The code is as follows. The registered error handling function register_shutdown_function is not executed, which is very strange
error_reporting(-1);
ini_set('display_errors', 1);
set_error_handler(function(){
echo "error handler execute";
}, E_ALL);
set_exception_handler(function(){
echo "exception handler execute";
});
register_shutdown_function(function(){
echo "shutdown function execute";
});
try{
0$a;
}catch(exception $e){
echo "catch exception";
}finally{
echo "finally ";
}
Execution results:
Parse error: syntax error, unexpected '$a' (T_VARIABLE) in C:\Users\mao\Documents\php\index.php on line 18
PHP Parse error: syntax error, unexpected '$a' (T_VARIABLE) in C:\Users\mao\Documents\php\index.php on line 18
[Finished in 0.1s]
0$a was written intentionally, why were the exceptions not handled?
You can try PHP7’s try{}catch(Error){}
http://php.net/manual/en/clas...
Syntax errors are the first to be warned by the system and are system-level exceptions. As soon as the system warns, the entire program has never been run.
First of all, you must understand that exceptions and errors are different. Exceptions are situations outside of normal logic, while errors refer to errors during runtime! Once an error occurs, the entire code will no longer be executed and your program will hang. If an exception occurs, you can use try catch to catch it, and the program can continue to run!
Obviously, your code has a syntax error, so this program cannot be executed at all, which means that you triggered an error instead of an exception. So how to achieve the effect you want? First we need to solve the syntax problem, look at the code below