2011年12月3日 星期六

PHP 錯誤等級設定

PHP錯誤等級
http://php.net/manual/en/errorfunc.constants.php
error_reporting
http://php.net/manual/en/function.error-reporting.php
ini_set
http://php.net/manual/en/function.ini-set.php

除了可以在 php.ini設定外,
有時只想讓某部分程式顯示錯誤訊息,
可如下設定。

方法一:
在程式裡面設定
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1); 
error_reporting(E_ALL | E_STRICT); 

方法二:
在 .htaccess檔裡面設定
php_flag  display_errors on
php_flag  display_startup_errors on
php_value error_reporting 6143

沒有留言:

張貼留言