php $HTTP_RAW_POST_DATA & Deprecated: Automatically populating $HTTP_RAW_POST_DATA...

今天项目测试php(5.6)报错:
Deprecated: Automatically populating $HTTP_RAW_POST_DATA is deprecated and will be removed in a future version. To avoid this warning set ‘always_populate_raw_post_data’ to ‘-1’ in php.ini and use the php://input stream instead. in Unknown on line 0

查询得知:
在高版本 php 的发版说明中都有 $HTTP_RAW_POST_DATA 即将(已经)取消,请改用从php://input 中读取的声明

修改php.ini配置文件即可:

always_populate_raw_post_data = -1



知识点: $HTTP_RAW_POST_DATA 是什么鬼?
问题: $HTTP_RAW_POST_DATA == $_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).

基本上$GLOBALS['HTTP_RAW_POST_DATA']$_POST是一样的。
但是如果post过来的数据不是PHP能够识别的,你可以用 $GLOBALS['HTTP_RAW_POST_DATA']来接收,比如text/xml或者 soap 等等。

PHP默认识别的数据类型是application/x-www.form-urlencoded标准的数据类型。

Content-Type=text/xml 类型,提交一个xml文档,php端要怎么获得这个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).

型如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"

end~

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值