如何在使用LAMP时检查PHP脚本中的错误?

时间:2017-03-20 17:13:50

标签: php apache lamp

我很抱歉,但我对PHP很陌生。只是试图运行错误的代码,它没有显示任何错误消息。 enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以在Linux机器上的错误日志中查看错误:

Ubuntu系统: /var/log/apache2/error.log

基于CentOS的系统: /var/log/httpd/error.log

如果要查看浏览器本身的错误: 在php脚本的顶部添加以下行:

error_reporting(E_ALL);
ini_set('display_errors', 1);