最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php中PHP 的 $_POST、$HTTP_RAW_POST_DATA 和 php://input有什么不同
时间:2022-06-24 16:47:30 编辑:袖梨 来源:一聚教程网
Mac Pro 电脑编译安装了 PHP 5.6.21,先前的系统运行时报如下警告级错误:
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.
意思是 自动变量 $HTTP_RAW_POST_DATA 已过时,将来会被移除,使用 php://input 流方式代替!
总结:区别 PHP 的 $_POST、$HTTP_RAW_POST_DATA 和 php://input
1、HTML