//error handler functionfunction customError($errno, $errstr){ echo "<b>Error:</b> [$errno] $errstr";}
//set error handlerset_error_handler("customError");
//代码====