我已将error_reporting设置为
error_reporting = E_ALL & ~E_DEPRECATED ^ E_STRICT
在php.ini中。根据phpinfo()的数值是22527。
但是我们仍然记录了很多
[01-Oct-2011 13:06:36] PHP Deprecated: Assigning the return value of new by reference is deprecated in /htdocs/www/site/core.php on line 2381
[01-Oct-2011 13:06:36] PHP Deprecated: Function set_magic_quotes_runtime() is deprecated in /htdocs/www/site/core.php on line 1538
我已经看到了一些关于此问题的其他问题,但没有找到任何我没有尝试过的解决方案。我们正在使用(过时的版本)VBulletin。这会改变设置吗?
我现在看到VBulletin的forumdisplay.php有一行
error_reporting(E_ALL & ~E_NOTICE);
评论这一点并没有改变任何事情。