13-05.php

来自「《php程序设计》的配套源码 《php程序设计》的配套源码 《php程序」· PHP 代码 · 共 15 行

PHP
15
字号
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 + =
减小字号Ctrl + -
显示快捷键?