📄 13-05.php
字号:
function log_roller($error, $error_string) {
$file = '/var/log/php_errors.log';
if (filesize($file) > 1024) {
rename($file, $file . (string)time());
clearstatcache();
}
error_log($error_string, 3, $file);
}
set_error_handler('log_roller');
for ($i=0; $i < 5000; $i++) {
trigger_error(time().":Just an error,ma'am.\n");
}
restore_error_handler();
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -