解决报错:Automatically populating $HTTP_RAW_POST_DATA is deprecated and will be removed in

今天在通过网页ajax的方法报错

<br />
<b>Deprecated</b>:  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 <b>Unknown</b> on line <b>0</b><br />
<br />
<b>Warning</b>:  Cannot modify header information - headers already sent in <b>Unknown</b> on line <b>0</b><br />


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

Warning: Cannot modify header information - headers already sent in Unknown on line 0

解决方法
在php.ini里将always_populate_raw_post_data=-1来隐藏warning;
打开php.ini 开启 always_populate_raw_post_data = 1 重启php即可

你可能感兴趣的:(ThinkPHP)