码迷,mamicode.com
首页 > Web开发 > 详细

php 简单日志记录 log文件

时间:2018-04-03 21:55:00      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:class   ring   ttl   clean   tle   fun   cti   fclose   string   

//日志记录
function writeFile($data,$type=‘a‘){
$filename = date("Ymd").".log";
$handle =@ fopen($filename, $type);
flock($handle, LOCK_EX);
ob_start();
echo "\n" . "[SQL]" . "\n";
print_r ($data);
$string = ob_get_contents();
ob_end_clean();
$fettle = @fwrite($handle, $string);
fclose($handle);
@chmod($filename,0777);
}

//接口用

 writeFile($sql);

php 简单日志记录 log文件

标签:class   ring   ttl   clean   tle   fun   cti   fclose   string   

原文地址:https://www.cnblogs.com/zhangjian816/p/8711045.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!