首页 > 语言 > PHP > 正文

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

2024-09-04 11:49:30
字体:
来源:转载
供稿:网友
  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); 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表