`
紫竹星云
  • 浏览: 29596 次
社区版块
存档分类
最新评论

[转]file_get_contents("php://input")

 
阅读更多
原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。http://taoshi.blog.51cto.com/1724747/1165499
   $data = file_get_contents("php://input");
    php://input 是个可以访问请求的原始数据的只读流。 POST 请求的情况下,最好使用 php://input 来代替 $HTTP_RAW_POST_DATA,因为它不依赖于特定的 php.ini 指令。 而且,这样的情况下 $HTTP_RAW_POST_DATA 默认没有填充, 比激活 always_populate_raw_post_data 潜在需要更少的内存。 enctype="multipart/form-data" 的时候 php://input 是无效的。 
    
 
1, php://input 可以读取http entity body中指定长度的值,由Content-Length指定长度,不管是POST方式或者GET方法提交过来的数据。但是,一般GET方法提交数据 时,http request entity body部分都为空。 
2,php://input 与$HTTP_RAW_POST_DATA读取的数据是一样的,都只读取Content-Type不为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为空。

例子
 1.php用file_get_contents("php://input")或者$HTTP_RAW_POST_DATA可以接收xml数据
 比如:
  getXML.php;//接收XML地址
  
<?php 
     $xmldata = file_get_contents("php://input"); 
     $data = (array)simplexml_load_string($xmldata); 
?> 

  这里的$data就是包含xml数据的数组,具体php解析xml数据更新详细的方法
  sendXML.php
 
<?php 
     $xml = '<xml>xmldata</xml>';//要发送的xml 
     $url = 'http://localhost/test/getXML.php';//接收XML地址 

     $header = 'Content-type: text/xml';//定义content-type为xml 
     $ch = curl_init(); //初始化curl 
     curl_setopt($ch, CURLOPT_URL, $url);//设置链接 
     curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//设置是否返回信息 
     curl_setopt($ch, CURLOPT_HTTPHEADER, $header);//设置HTTP头 
     curl_setopt($ch, CURLOPT_POST, 1);//设置为POST方式 
     curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);//POST数据 
     $response = curl_exec($ch);//接收返回信息 
     if(curl_errno($ch)){//出错则显示错误信息 
     print curl_error($ch); 
     } 
     curl_close($ch); //关闭curl链接 
     echo $response;//显示返回信息 
?> 

 2.一个手机上传图片到服务器的小程序
  上传文件
   
<?php 
     //@file phpinput_post.php 
     $data=file_get_contents('btn.png'); 
     $http_entity_body = $data; 
     $http_entity_type = 'application/x-www-form-urlencoded'; 
     $http_entity_length = strlen($http_entity_body); 
     $host = '127.0.0.1'; 
     $port = 80; 
     $path = '/image.php'; 
     $fp = fsockopen($host, $port, $error_no, $error_desc, 30); 
     if ($fp){ 
        fputs($fp, "POST {$path} HTTP/1.1\r\n"); 
        fputs($fp, "Host: {$host}\r\n"); 
        fputs($fp, "Content-Type: {$http_entity_type}\r\n"); 
        fputs($fp, "Content-Length: {$http_entity_length}\r\n"); 
        fputs($fp, "Connection: close\r\n\r\n"); 
        fputs($fp, $http_entity_body . "\r\n\r\n"); 

        while (!feof($fp)) { 
         $d .= fgets($fp, 4096); 
        } 
        fclose($fp); 
        echo $d; 
     } 
?> 

  接收文件
  
<?php 
        /** 
         *Recieve image data 
        **/    
        error_reporting(E_ALL); 

     function get_contents() {    
        $xmlstr= file_get_contents("php://input"); 
        $filename=time().'.png'; 
        if(file_put_contents($filename,$xmlstr)){ 
         echo 'success'; 
        }else{ 
         echo 'failed'; 
        } 
        } 
        get_contents(); 
?>
 3.获取HTTP请求原文
  
/** 
     * 获取HTTP请求原文 
     * @return string 
     */ 
    function get_http_raw() { 
     $raw = ''; 

     // (1) 请求行 
     $raw .= $_SERVER['REQUEST_METHOD'].' '.$_SERVER['REQUEST_URI'].' '.$_SERVER['SERVER_PROTOCOL']."\r\n"; 

     // (2) 请求Headers 
     foreach($_SERVER as $key => $value) { 
        if(substr($key, 0, 5) === 'HTTP_') { 
         $key = substr($key, 5); 
         $key = str_replace('_', '-', $key); 

         $raw .= $key.': '.$value."\r\n"; 
        } 
     } 

     // (3) 空行 
     $raw .= "\r\n"; 

     // (4) 请求Body 
     $raw .= file_get_contents('php://input'); 

     return $raw; 
}
 
 
分享到:
评论

相关推荐

    php下载文件file_get_contents php input

    本文将深入探讨如何使用`file_get_contents`下载文件,并结合`php input`这一输入流概念进行讲解。 首先,`file_get_contents`函数的基本语法是`file_get_contents($filename, $context, $offset, $maxlen)`。其中...

    file_get_contents&#40;php://input, r&#41;实例介绍

    在本文中,我们将深入探讨 `file_get_contents('php://input', 'r')` 的实例,以及它在处理 POST 数据时的作用。 在 PHP 中,`php://input` 是一个特殊的输入流,它允许我们访问原始的 HTTP 请求主体。这在处理 ...

    file_get_contents&#40;&quot;php://input&quot;, &quot;r&quot;&#41;实例介绍

    在本文中,我们将深入探讨 `file_get_contents("php://input", "r")` 的工作原理、使用场景以及如何通过实例来理解这一功能。 `file_get_contents()` 函数的基本语法是 `file_get_contents(filename, context, ...

    file-get-contents.js:Node.js版本的file_get_contents PHP函数

    const fileGetContents = require ( 'file-get-contents' ) ; // A File request try { let data = await fileGetContents ( '/tmp/foo/bar' ) ; console . log ( data ) ; } catch ( err ) { console . log ( '...

    深入php函数file_get_contents超时处理的方法详解

    在PHP编程中,`file_get_contents()` 是一个非常实用的内置函数,用于读取文件(包括URL)到字符串。然而,在处理远程资源时,可能会遇到超时问题,尤其是在网络状况不稳定或者目标服务器响应慢的情况下。本文将深入...

    关于file_get_contents返回为空或函数不可用的解决方案

    如果你使用file_get_contents获取远程文件内容返回为空或提示该函数不可用,也许本文能帮到你! 使用file_get_contents和fopen必须空间开启allow_url_fopen。方法:编辑php.ini,设置allow_url_fopen = On,allow_url...

    比file_get_contents稳定的curl_get_contents分享

    本文将详细讨论`file_get_contents`和`curl`的区别,以及为何`curl_get_contents`可能比`file_get_contents`更为稳定。 `file_get_contents`是一个非常简单且易于使用的函数,它能够读取文件或者URL的内容。然而,...

    php中$_POST与php://input的区别实例分析

    在`post.php`中,可以使用`file_get_contents('php://input')`来获取原始的JSON字符串: ```php &lt;?php $data = json_decode(file_get_contents('php://input'), true); echo 'User: ' . $data['user'] . ', ...

    PHP中使用file_get_contents post数据代码例子

    在PHP开发中,file_get_contents()函数是一个非常实用的函数,它可以用来读取远程文件的数据,也可以用来执行HTTP请求。file_get_contents() 默认是通过GET方法获取数据,但通过适当配置,它也可以用来通过POST方法...

    file_get_contents获取不到网页内容的解决方法

    在PHP开发中,file_get_contents函数是一个非常常用的函数,它可以读取URL的内容,就像读取本地文件一样。然而,并非所有时候file_get_contents都能顺利完成任务。有时候,开发者可能会遇到file_get_contents无法...

    php输入流php://input使用浅析

    这个例子中,表单的name和age字段在提交后,服务端通过file_get_contents函数读取php://input流,从而获取了这些数据。从客户端提交的表单数据是name=tom&age=22,这个数据就是服务端通过php://input流获取到的原始...

    php输入流php://input使用示例(php发送图片流到服务器)

    服务器端使用`file_get_contents('php://input')`来获取这些原始的POST数据,即`name=tom&age=22`。 值得注意的是,`php://input`与PHP的全局变量`$HTTP_RAW_POST_DATA`在功能上是相同的,但`$HTTP_RAW_POST_DATA`...

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

    例如,你可以使用`file_get_contents("php://input")`来获取XML数据,然后通过`simplexml_load_string`将其转换为PHP数组。 7. 对于文件上传,如小程序或移动应用上传图片到服务器,通常会使用`multipart/form-data...

    分析php://output和php://stdout的区别

    file_put_contents("php://output", "messagesentbyoutput\n"); file_put_contents("php://stdout", "messagesentbystdout\n"); print("messagesentbyprint\n"); echo "SAPI: " . PHP_SAPI . "\n"; ?&gt; ``` 在命令行...

    php如何获取原生请求体

    `file_get_contents()`函数读取了`php://input`流,并将内容赋值给`$rawRequestBody`变量。这样,无论请求体的格式如何,都能获取到未经处理的数据。 2. **处理不同类型的请求体** - **JSON**:如果请求体是JSON...

    PHP伪协议相关 -.pdf

    $input = file_get_contents('php://stdin'); // 创建临时文件 $tempFile = fopen('php://temp', 'r+'); ``` - **用途**:常用于命令行脚本中处理用户输入或生成临时文件。 ##### 4. **文件协议(file://)*...

Global site tag (gtag.js) - Google Analytics