有关“$HTTP_RAW_POST_DATA”被弃用的警告
2022-08-30 07:06:43
我切换到PHP 5.6.0,现在我到处都收到以下警告:
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
好吧,我依赖于一些已弃用的功能。除了我没有!
- 我从未在任何脚本中使用此变量。说实话,我甚至不知道它的存在。
-
phpinfo()
表示我已设置为 0(禁用)。这是怎么回事呢?always_populate_raw_post_data
我不想通过将此值设置为-1来“避免警告”。这只会隐藏警告,我仍然会有弃用的配置。我想从源头上解决问题,并知道为什么PHP认为填充是打开的。HTTP_RAW_POST_DATA