PHP程序员站--PHP编程开发平台
 当前位置:主页 >> PHP基础 >> 基础文章 >> 

php的HTTP_RAW_POST_DATA

php的HTTP_RAW_POST_DATA

来源:PHP程序员站  作者:PHP程序员站  发布时间:2011-07-16
当用Content-Type=text/xml 类型,提交一个xml文档内容给了php server,要怎么获得这个POST数据。 The RAW / uninterpreted HTTP POST information can be accessed with: $GLOBALS['HTTP_RAW_POST_DATA'] This is useful in cases where the post Content-Type is not

当用Content-Type=text/xml 类型,提交一个xml文档内容给了php server,要怎么获得这个POST数据。

The RAW / uninterpreted HTTP POST information can be accessed with:   $GLOBALS['HTTP_RAW_POST_DATA'] This is useful in cases where the post Content-Type is not something PHP understands (such as text/xml).

由于PHP默认只识别application/x-www.form-urlencoded标准的数据类型,因此,对型如text/xml的内容无法解析为$_POST数组,故保留原型,交给$GLOBALS['HTTP_RAW_POST_DATA'] 来接收。

另外还有一项 php://input 也可以实现此这个功能

php://input 允许读取 POST 的原始数据。和 $HTTP_RAW_POST_DATA 比起来,它给内存带来的压力较小,并且不需要任何特殊的 php.ini 设置。php://input 不能用于 enctype="multipart/form-data"。

不知道大家用过nosoap没,nusoap就是用HTTP_RAW_POST_DATA来接受数据的.


示例应用

a.htm  
<form   action="post.php"   method="post">  
<input   type="text"   name="user">  
<input   type="password"   name="password">  
<input   type="submit">  
</form>     

post.php  
<?   echo   file_get_contents("php://input");   ?> 


延伸阅读:
$HTTP_RAW_POST_DATA 和 $_POST的区别
Tags: HTTP_RAW_POST_DATA   php  
最新文章
推荐阅读
月点击排行榜
PHP程序员站 Copyright © 2007-2010,PHPERZ.COM All Rights Reserved 粤ICP备07503606号