您的位置:首页 > 编程语言 > PHP开发

一个php日志类

2013-10-24 16:23 197 查看
<?php

//author:lixiuran

class Log {

public static function writeLog($string) {

$string = date('H:i:s') . ': ' . $string . "\r\n";
$dir = dirname(__FILE__) . '/' . date('Y');
if ( ! is_dir($dir)) {
@mkdir($dir);
}
$filename = $dir . '/' . date('Y-m-d') . '.log';
$handle = @fopen($filename, 'a');
@fwrite($handle, $string);
@fclose($handle);
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: