如果当 Typecho 需要打印错误报告时,可以在根目录下的 `index.php` 里添加以下两行代码进行打印。
```
error_reporting(E_ALL);
ini_set('display_errors', '1');
```

2024-08-15