php输出错误信息
Posted 安筱雨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php输出错误信息相关的知识,希望对你有一定的参考价值。
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))) { header("Content-Type: text/html; charset=utf-8"); echo ‘<font color=red>你的代码出错了:</font></br>‘; echo ‘致命错误:‘ . $_error[‘message‘] . ‘</br>‘; echo ‘文件:‘ . $_error[‘file‘] . ‘</br>‘; echo ‘在第‘ . $_error[‘line‘] . ‘行</br>‘; } } register_shutdown_function("cache_shutdown_error");
最好放在最前面,如果报错就终止了,就无法执行这个方法
以上是关于php输出错误信息的主要内容,如果未能解决你的问题,请参考以下文章