2022-08-29
<?php
class ErrorClass {
// Must be a static public method
public static function myError($errorNum){
echo('set_error_handler:123 ' . $errorNum . ':' . $errorMs . ' in ' . $errorFile . ' on ' . $errorLine . ' line ');
}
}
set_exception_handler(['ErrorClass', 'myError']);
throw new Exception('Uncaught Exception occurred---');
?>