当前位置:首页 > PHP文摘 > 列表

PHP使用stream_context_create()模拟POST/GET请求的方法

发布:smiling 来源: PHP粉丝网  添加日期:2019-10-10 18:37:59 浏览: 评论:0 

本文实例讲述了PHP使用stream_context_create()模拟POST/GET请求的方法。分享给大家供大家参考,具体如下:

有时候,我们需要在服务器端模拟 POST/GET 等请求,也就是在 PHP 程序中去实现模拟,改怎么做到呢?或者说,在 PHP 程序里,给你一个数组,如何将这个数组 POST/GET 到另外一个地址呢?当然,使用 CURL 很容易办到,那么如果不使用 CURL 库,又该怎么办呢?其实,在 PHP 里已经有相关的函数实现了,这个函数就是接下来要讲的 stream_context_create()。

直接 show you the code,这是最好的方法:

  1. $data = array
  2.  
  3.     'foo'=>'bar',  
  4.  
  5.     'baz'=>'boom',  
  6.  
  7.     'site'=>'localhost',  
  8.  
  9.     'name'=>'nowa magic');  
  10.  
  11. $data = http_build_query($data);  
  12.  
  13. //$postdata = http_build_query($data); 
  14.  
  15. $options = array
  16.  
  17.     'http' => array
  18.  
  19.         'method' => 'POST'
  20.  
  21.         'header' => 'Content-type:application/x-www-form-urlencoded'
  22.  
  23.         'content' => $data 
  24.  
  25.         //'timeout' => 60 * 60 // 超时时间(单位:s) 
  26.  
  27.     ) 
  28.  
  29. ); 
  30. //phpfensi.com 
  31. $url = "http://localhost/test2.php"
  32.  
  33. $context = stream_context_create($options); 
  34.  
  35. $result = file_get_contents($url, false, $context); 
  36.  
  37. echo $result

http://localhost/test2.php 的代码为:

  1. $data = $_POST
  2.  
  3. echo '<pre class="brush:php;toolbar:false">'
  4.  
  5. print_r( $data ); 
  6.  
  7. echo '</pre>'

运行结果为:

  1. Array 
  2.  
  3.  
  4.   [foo] => bar 
  5.  
  6.   [baz] => boom 
  7.  
  8.   [site] => localhost 
  9.  
  10.   [name] => nowa magic 
  11.  

一些要点讲解:

1. 以上程序用到了 http_build_query() 函数,如果需要了解,可以参看 前面一篇《PHP使用http_build_query()构造URL字符串的方法》。

2. stream_context_create() 是用来创建打开文件的上下文件选项的,比如用POST访问,使用代理,发送header等。就是 创建一个流,再举一个例子吧:

  1. $context = stream_context_create(array(  
  2.  
  3.     'http' => array(  
  4.  
  5.         'method' => 'POST',  
  6.  
  7.         'header' => sprintf("Authorization: Basic %s\r\n"base64_encode($username.':'.$password)).  
  8.  
  9.         "Content-type: application/x-www-form-urlencoded\r\n",  
  10.  
  11.         'content' => http_build_query(array('status' => $message)),  
  12.  
  13.         'timeout' => 5,  
  14.  
  15.     ),  
  16.  
  17. ));  
  18.  
  19. $ret = file_get_contents('http://twitter.com/statuses/update.xml', false, $context);  

3. stream_context_create创建的上下文选项即可用于流(stream),也可用于文件系统(file system)。对于像 file_get_contents、file_put_contents、readfile直接使用文件名操作而没有文件句柄的函数来说更有用。stream_context_create增加header头只是一部份功能,还可以定义代理、超时等。这使得访问web的功能不弱于curl。

4. stream_context_create() 作用:创建并返回一个文本数据流并应用各种选项,可用于fopen(),file_get_contents()等过程的超时设置、代理服务器、请求方式、头信息设置的特殊过程。

5. stream_context_create 还能通过增加 timeout 选项解决file_get_contents超时处理:

  1. $opts = array
  2.  
  3.   'http'=>array
  4.  
  5.   'method'=>"GET"
  6.  
  7.   'timeout'=>60, 
  8.  
  9.  ) 
  10.  
  11. ); 
  12.  
  13. //创建数据流上下文 
  14.  
  15. $context = stream_context_create($opts); 
  16.  
  17. $html =file_get_contents('http://localhost', false, $context); 
  18.  
  19. //fopen输出文件指针处的所有剩余数据: 
  20.  
  21. //fpassthru($fp); //fclose()前使用 

Tags: stream_context_create

分享到: