php自定义错误处理器

可以调用 set_error_handler(error_handle_function,error_types)指定错误处理器。如

function customError($errno, $errstr, $errfile, $errline)
 { 
 echo "<b>Custom error:</b> [$errno] $errstr<br />";
 }
set_error_handler("customError"); // 默认为所有的错误,就是E_ALL.

 

更多:https://www.shanhubei.com/archives/55210.html

posted @ 2024-04-11 17:41  珊瑚贝博客  阅读(1)  评论(0编辑  收藏  举报