使用 register_shutdown_function 記錄致命錯誤,這需要 PHP 5.2 :
register_shutdown_function
register_shutdown_function( "fatal_handler" ); function fatal_handler() { $errfile = "unknown file"; $errstr = "shutdown"; $errno = E_CORE_ERROR; $errline = 0; $error = error_get_last(); if($error !== NULL) { $errno = $error["type"]; $errfile = $error["file"]; $errline = $error["line"]; $errstr = $error["message"]; error_mail(format_error( $errno, $errstr, $errfile, $errline)); } }
您必須定義 error_mail 和 format_error 函數。例如:
error_mail
format_error
function format_error( $errno, $errstr, $errfile, $errline ) { $trace = print_r( debug_backtrace( false ), true ); $content = "
$errstr
$errno
$trace
使用Swift Mailer寫error_mail函數。
另請參閱:
使用
register_shutdown_function
記錄致命錯誤,這需要 PHP 5.2 :您必須定義
error_mail
和format_error
函數。例如:使用Swift Mailer寫
error_mail
函數。另請參閱: