php开启与关闭错误提示

2021-07-01 18:04

阅读:478

标签:list   blank   ror   href   logs   linux   php5   start   系统   

linux系统下:

1. 打开php.ini文件。

以我的ubuntu为例,这个文件在: /etc/php5/apache2 目录下。

2. 搜索并修改下行,把Off值改成On

display_errors = Off

3. 搜索下行

error_reporting = E_ALL & ~E_NOTICE
或者搜索:
error_reporting = E_ALL & ~E_DEPRECATED
修改为
error_reporting = E_ALL | E_STRICT

4. 修改Apache的 httpd.conf

php_flag display_errors        on
php_value error_reporting       2039

5. 重启Apache,就OK了。

sudo /etc/init.d/apache2 restart
或者
sudo service httpd restart

 

php开启与关闭错误提示

标签:list   blank   ror   href   logs   linux   php5   start   系统   

原文地址:http://www.cnblogs.com/wenhainan/p/7131764.html


评论


亲,登录后才可以留言!