Home > php教程 > PHP源码 > body text

记录日志,达到文件大小,自动新建文件

PHP中文网
Release: 2016-05-25 16:59:17
Original
1071 people have browsed it

php代码

    function write($message,$level='ERROR',$type=3,$destination='',$extra='') {
    	$LOG_PATH = './';
    	$LOG_FILE_SIZE = 100;
        $now = date('[ c ]');
        $type = $type?$type:3;
        if($type == 3) { // 文件方式记录日志
            if(empty($destination))
                $destination = $LOG_PATH.date('y-m-d').'.log';
            //检测日志文件大小,超过配置大小则备份日志文件重新生成
            if(is_file($destination) && floor($LOG_FILE_SIZE) <= filesize($destination) )
                  rename($destination,dirname($destination).&#39;/&#39;.basename($destination).&#39;-&#39;.time().&#39;.log&#39;);
        }
        error_log("{$now} {$level}: {$message}\r\n", $type,$destination,$extra );
        //clearstatcache();
    }
    write(&#39;dd&#39;);
Copy after login

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!