這篇文章主要介紹了PHP使用stream_context_create()模擬POST/GET請求的方法,結合實例形式較為詳細的分析了stream_context_create模擬POST/GET請求的原理,使用方法與相關注意事項,需要的朋友可以參考下
有時候,我們需要在伺服器端模擬POST/GET 等請求,也就是在PHP 程式中去實作模擬,改怎麼做呢?或者說,在 PHP 程式裡,給你一個數組,如何將這個數組 POST/GET 到另一個位址?當然,使用 CURL 很容易辦到,那麼如果不使用 CURL 庫,又該怎麼辦呢?其實,在 PHP 裡已經有相關的函數實作了,這個函數就是接下來要講的 stream_context_create()。
#直接show you the code,這是最好的方法:
$data = array( 'foo'=>'bar', 'baz'=>'boom', 'site'=>'localhost', 'name'=>'nowa magic'); $data = http_build_query($data); //$postdata = http_build_query($data); $options = array( 'http' => array( 'method' => 'POST', 'header' => 'Content-type:application/x-www-form-urlencoded', 'content' => $data //'timeout' => 60 * 60 // 超时时间(单位:s) ) ); $url = "http://localhost/test2.php"; $context = stream_context_create($options); $result = file_get_contents($url, false, $context); echo $result;
$data = $_POST; echo '<pre class="brush:php;toolbar:false">'; print_r( $data ); echo '';
Array ( [foo] => bar [baz] => boom [site] => localhost [name] => nowa magic )
$context = stream_context_create(array( 'http' => array( 'method' => 'POST', 'header' => sprintf("Authorization: Basic %s\r\n", base64_encode($username.':'.$password)). "Content-type: application/x-www-form-urlencoded\r\n", 'content' => http_build_query(array('status' => $message)), 'timeout' => 5, ), )); $ret = file_get_contents('http://twitter.com/statuses/update.xml', false, $context);
$opts = array( 'http'=>array( 'method'=>"GET", 'timeout'=>60, ) ); //创建数据流上下文 $context = stream_context_create($opts); $html =file_get_contents('http://localhost', false, $context); //fopen输出文件指针处的所有剩余数据: //fpassthru($fp); //fclose()前使用總結:以上就是這篇文章的全部內容,希望能對大家的學習有幫助。 相關推薦:
##
以上是PHP使用stream_context_create()模擬POST/GET請求的方法及實例分析的詳細內容。更多資訊請關注PHP中文網其他相關文章!