PHP错误处理 PHP错误处理 Posted on March 14, 2023 php 异常处理 ``` $err = null; # 设置异常回调 set_error_handler(function ( int $code, string $msg, string $file, int $line, array $context ) use (&$err) { $err = $msg; }); [Read More] Tags: php