有没有办法为特定目录设置error_reporting(E_ALL);而不是将其包含在每个文件中?

我想为我的beta.mysite.com开启错误报告功能

最佳答案

You can use a .htaccess file in Apache。只需添加以下行:

php_value error_reporting 6143

或对于旧的PHP版本:
php_value error_reporting 2047

请注意,您不能使用竞争对象(例如E_ALL)

the manual:

关于php - 特定文件夹上的错误报告,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1049326/

10-11 02:11