最近买了一个服务器,然而服务器确关闭了错误显示功能,很郁闷,于是到处查找解决方案,
使用ini_set('display_errors','on');依然不显示的情况下,我找下了如下解决方法,拿出来分享一下
<?php
error_reporting(E_ALL || ~E_NOTICE);
//定义的错误处理函数
set_error_handler(array('phpa_error', 'error_handler'), E_ALL);
class phpa_error
{
public function error_handler($errno, $errstr, $errfile, $errline) {
echo $errno.' <br />';
echo $errstr.' <br />';
echo $errfile.' <br />';
echo $errline.' <br />';
// 这里也可以用 error_log函数去记录错误
}
}
echo $DDJFK;
?>
使用ini_set('display_errors','on');依然不显示的情况下,我找下了如下解决方法,拿出来分享一下
<?php
error_reporting(E_ALL || ~E_NOTICE);
//定义的错误处理函数
set_error_handler(array('phpa_error', 'error_handler'), E_ALL);
class phpa_error
{
public function error_handler($errno, $errstr, $errfile, $errline) {
echo $errno.' <br />';
echo $errstr.' <br />';
echo $errfile.' <br />';
echo $errline.' <br />';
// 这里也可以用 error_log函数去记录错误
}
}
echo $DDJFK;
?>