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