當我們要讓 php 在web頁面顯示錯誤時, 我們可以修改 php.ini 找到以下

display_errors = On

改成 On 啟動, 但這會影響到 Apache 下所有的網站

如果我們在一個 Apache 下有多個網站的話, 就可以如下面所說的做,

比如我要 bbb.bbb.bbb.bbb 的網站開啟 php debug mode(除錯)在

後面加上

php_flag display_errors on

就可以了 ~~ 如下


DocumentRoot "/var/www/xxxxx/"
ServerName bbb.bbb.bbb.bbb
AddDefaultCharset UTF-8
php_flag display_errors on

allow from all
Options FollowSymLinks MultiViews

http://www.info-artist.net/2009/06/web-php-debug-mode.html