当前位置:首页 > PHP教程 > php函数 > 列表

php怎么写日志?php实现的简单日志写入函数

发布:smiling 来源: PHP粉丝网  添加日期:2018-09-27 11:31:38 浏览: 评论:0 
  1. functionlog($logthis){ 
  2. file_put_contents('logfile.log',date("Y-m-d H:i:s")." ".$logthis."\r\n", FILE_APPEND | LOCK_EX); 
  3. // use \r\n for new line on windows, just \n on linux 
  4. // PHP_EOL cross platform solution for new line 
  5. // // so better to use this 
  6. functionlog($logthis){ 
  7. file_put_contents('logfile.log',date("Y-m-d H:i:s")." ".$logthis.PHP_EOL, FILE_APPEND | LOCK_EX); 

Tags: 日志 函数

分享到: