当前位置:首页 > PHP教程 > php高级应用 > 列表

PHP输入流php://input实例讲解

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-30 21:50:55 浏览: 评论:0 

这篇文章主要介绍了PHP输入流php://input实例讲解,分别举例对输入流php://input进行深入学习,感兴趣的小伙伴们可以参考一下,对于php://input介绍,PHP官方手册文档有一段话对它进行了很明确地概述。

“php://input allows you to read raw POST data. It is a less memory intensive alternative to$HTTP_RAW_POST_DATA and does not need any special php.ini directives. php://input is not available with enctype=”multipart/form-data”.

翻译过来,是这样:

“php://input可以读取没有处理过的POST数据。相较于$HTTP_RAW_POST_DATA而言,它给内存带来的压力较小,并且不需要特 殊的php.ini设置。php://input不能用于enctype=multipart/form-data”

总结如下:

1)、Coentent-Type仅在取值为application/x-www-data-urlencoded和multipart/form-data两种情况下,PHP才会将http请求数据包中相应的数据填入全局变量$_POST

2)、PHP不能识别的Content-Type类型的时候,会将http请求包中相应的数据填入变量$HTTP_RAW_POST_DATA

3)、只有Coentent-Type为multipart/form-data的时候,PHP不会将http请求数据包中的相应数据填入php://input,否则其它情况都会。填入的长度,由Coentent-Length指定。

4)、只有Content-Type为application/x-www-data-urlencoded时,php://input数据才跟$_POST数据相一致。

5)、php://input数据总是跟$HTTP_RAW_POST_DATA相同,但是php://input比$HTTP_RAW_POST_DATA更凑效,且不需要特殊设置php.ini

6)、PHP会将PATH字段的query_path部分,填入全局变量$_GET。通常情况下,GET方法提交的http请求,body为空。

总结起来就是,在用$_POST获取不到由APP或者一些接口的回调数据时,就用php://input试试

1、 接受xml数据

  1. //发送xml数据 
  2. $xml = '<xml>xmldata</xml>';//要发送的xml  
  3. $url = 'http://localhost/test/getXML.php';//接收XML地址  
  4. $header = 'Content-type: text/xml';//定义content-type为xml  
  5. $ch = curl_init(); //初始化curl  
  6. curl_setopt($ch, CURLOPT_URL, $url);//设置链接  
  7. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//设置是否返回信息  
  8. curl_setopt($ch, CURLOPT_HTTPHEADER, $header);//设置HTTP头  
  9. curl_setopt($ch, CURLOPT_POST, 1);//设置为POST方式  
  10. curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);//POST数据  
  11. $response = curl_exec($ch);//接收返回信息  
  12. if(curl_errno($ch)){//出错则显示错误信息  
  13. print curl_error($ch);  
  14. }  
  15. curl_close($ch); //关闭curl链接  
  16. echo $response;//显示返回信息  
  17.  
  18. // php用file_get_contents("php://input")或者$HTTP_RAW_POST_DATA可以接收xml数据 
  19. $xmldata = file_get_contents("php://input");  
  20. $data = (array)simplexml_load_string($xmldata); 

2、手机上传图片到服务器的小程序

发送

  1. //@file phpinput_post.php  
  2. $data=file_get_contents('btn.png');  
  3. $http_entity_body = $data;  
  4. $http_entity_type = 'application/x-www-form-urlencoded';  
  5. $http_entity_length = strlen($http_entity_body);  
  6. $host = '127.0.0.1';  
  7. $port = 80;  
  8. $path = '/image.php';  
  9. $fp = fsockopen($host$port$error_no$error_desc, 30);  
  10. if ($fp){  
  11. fputs($fp"POST {$path} HTTP/1.1\r\n");  
  12. fputs($fp"Host: {$host}\r\n");  
  13. fputs($fp"Content-Type: {$http_entity_type}\r\n");  
  14. fputs($fp"Content-Length: {$http_entity_length}\r\n");  
  15. fputs($fp"Connection: close\r\n\r\n");  
  16. fputs($fp$http_entity_body . "\r\n\r\n");  
  17.  
  18. while (!feof($fp)) {  
  19.  $d .= fgets($fp, 4096);  
  20. }  
  21. fclose($fp);  
  22. echo $d;  

接收

  1. /** 
  2.  *Recieve image data 
  3.  **/ 
  4. error_reporting(E_ALL); 
  5.  
  6. function get_contents() { 
  7.  $xmlstrfile_get_contents("php://input"); 
  8.  $filename=file_put_contentsxmltime().'.png'
  9.  if(($filename,$str)){ 
  10.  echo 'success'
  11.  }else
  12.  echo 'failed'
  13.  }  
  14.   } 
  15. get_contents(); 

3:获取HTTP请求原文

  1. /** 
  2.  * 获取HTTP请求原文 
  3.  * @return string 
  4.  */ 
  5. function get_http_raw(){ 
  6.  $raw = ''
  7.  // (1) 请求行  
  8.  $raw .= $_SERVER['REQUEST_METHOD'] . ' ' . $_SERVER['REQUEST_URI'] . ' ' . $_SERVER['SERVER_PROTOCOL'] . "\r\n"
  9.  // (2) 请求Headers  
  10.  foreach ($_SERVER as $key => $value) { 
  11.  if (substr($key , 0 , 5) === 'HTTP_') { 
  12.   $key = substr($key , 5); 
  13.   $key = str_replace('_' , '-' , $key); 
  14.   $raw .= $key . ': ' . $value . "\r\n"
  15.  } 
  16.  } 
  17.  // (3) 空行  
  18.  $raw .= "\r\n"
  19.  // (4) 请求Body  
  20.  $raw .= file_get_contents('php://input'); 
  21.  return $raw

以上就是针对PHP输入流举的三个小栗子,目的在于帮助大家更准确的理解PHP输入流,希望大家有所收获。

Tags: PHP输入流 php: input

分享到: