PHP没有在子目录上显示错误

时间:2014-04-21 14:00:39

标签: php bluehost

在php.ini中我有:

error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
display_errors = On

如果我在根目录中有一个语法错误的php文件,则会显示错误。如果它在子目录中,我看到一个空白页面(好像display_errors = Off)我确实看到了错误日志中的错误。

如何查看错误?

这是bluehost.com上的托管环境,我的php.ini文件位于/public_html/php.ini

1 个答案:

答案 0 :(得分:0)

config fileparticular php file

的顶部添加此行
ini_set('display_errors', 1);

这将改变ini settings运行时。