Catch 썸네일형 리스트형 [PHP] error handler 만들기 1 function myErrorHandler($errno, $errstr, $errfile, $errline) 2 { 3 if (!(error_reporting() & $errno)) { 4 // This error code is not included in error_reporting 5 return; 6 } 7 8 switch ($errno) { 9 case E_USER_ERROR: 10 echo "My ERROR [$errno] $errstr \n"; 11 echo " Fatal error on line $errline in file $errfile"; 12 echo ", PHP " . PHP_VERSION . " (" . PHP_OS . ") \n"; 13 echo "Aborting... \n".. 더보기 이전 1 다음