php日志在哪
程序员文章站
2022-04-09 08:00:00
...
这可以在php.ini中配置。
在php.ini中检查这些设置:
error_reporting = E_ALL | E_STRICT (按照php.ini中的开发建议)error_log = /var/log/php_errors.log
PHP配置日志:
error_reporting = E_ALL ;将会向PHP报告发生的每个错误 display_errors = Off ;不显示满足上条 指令所定义规则的所有错误报告 log_errors = On ;决定日志语句记录的位置 log_errors_max_len = 1024 ;设置每个日志项的最大长度 error_log = E:/php_log/php_error.log ;指定产生的 错误报告写入的日志文件位置
然后手动创建日志文件
touch /var/log/php_errors.log chown www-data: /var/log/php_errors.log chmod +rw /var/log/php_errors.log
现在你可以通过这种方式查看PHP错误
tail /var/log/php_errors.log
推荐:php服务器
以上就是php日志在哪的详细内容,更多请关注其它相关文章!
上一篇: php中this关键字用法分析
下一篇: php求不大于n的质数