Deprecated: Automatically populating $HTTP_RAW_POST_DATA is deprecated and will be removed in a futu

来源:互联网 发布:常见的网络硬件有哪些 编辑:程序博客网 时间:2024/06/11 14:53


Deprecated 中文释义:过时的

显然你的 php 版本比较高
在高版本 php 的发版说明中都有 $HTTP_RAW_POST_DATA 即将(已经)取消,请改用从 php://input 中读取 的声明

设原来是 $s = $HTTP_RAW_POST_DATA;

应写作 $s = file_get_contents('php://input');


方法2: 检查 PHP.ini   always_populate_raw_post_data是否打开

always_populate_raw_post_data = -1

0 0
原创粉丝点击