Skip to content

Instantly share code, notes, and snippets.

@jamesBan
Created June 9, 2014 08:50
Show Gist options
  • Select an option

  • Save jamesBan/79f998abdb361d6f64d5 to your computer and use it in GitHub Desktop.

Select an option

Save jamesBan/79f998abdb361d6f64d5 to your computer and use it in GitHub Desktop.
<?php
$options = array(
'http' => array(
'method' => "POST",
'header' =>
"Accept-language: en\r\n" .
"Content-type: application/x-www-form-urlencoded\r\n",
'content' => http_build_query(array('name' => 'zhangsan'))
));
$context = stream_context_create($options);
$fp = fopen('http://example.com', 'r', false, $context);
print_r(stream_get_contents($fp));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment