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

php简单日志写入函数

时间:2018-08-29 21:23:59      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:style   \n   date   error   show   col   span   error_log   func   

 1 function showLog($content,$filename="filenamelog")
 2 {
 3     $logfile = ‘logs/‘.$filename.date(‘Ymd‘).‘.txt‘;
 4     if(!file_exists(dirname($logfile)))
 5     {
 6         mkdir(dirname($logfile));
 7     }
 8     error_log(date("[Y-m-d H:i:s]")."-[".$_SERVER["REMOTE_ADDR"]."]\t[".$_SERVER[‘REQUEST_URI‘]."]:".$content."\n", 3,$logfile);
 9 }
10 showLog("");

 

php简单日志写入函数

标签:style   \n   date   error   show   col   span   error_log   func   

原文地址:https://www.cnblogs.com/SeeYouBug/p/9556640.html

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