VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php怎么写日志?php实现的简单日志写入函数

  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); 
  8.  

出处:http://www.phpfensi.com/php/20180927/11282.html


相关教程