程序发生致命错误的时候页面空白,想获取错误信息也不难!
可以利用两个函数:
error_get_last() 获取最后一次发生错误信息
register_shutdown_function()在脚本停止执行时注册一个回调函数
error_get_last()返回值结构:
Array
(
[type] => 8
[message] => Undefined variable: http:
[file] => C:WWWindex.php
[line] => 2
)
完整代码如下:
error_reporting(E_ALL);
function cache_shutdown_error() {
$_error = error_get_last();
if ($_error && in_array($_error['type'], array(1, 4, 16, 64, 256, 4096, E_ALL))) {
echo '<font color=red>你的代码出错了:</font></br>';
echo '致命错误:' . $_error['message'] . '</br>';
echo '文件:' . $_error['file'] . '</br>';
echo '在第' . $_error['line'] . '行</br>';
}
}
register_shutdown_function("cache_shutdown_error");
来自 http://blog.csdn.net/buyueliuying/article/details/50526836