PHP 写日志换行

很多时候记录日志需要换行。不建议使用\r\n,因为:
在windows中\r\n是换行
在Mac中\r是换行
在Liunx中\n是换行

但是PHP提供了一个常量来匹配不同的操作系统



file_put_contents(BasePath.DS.'debug_wfile.txt', date("Y-m-d H:i:s").' w :'.$data.' ; '.PHP_EOL, FILE_APPEND);


debug_wfile.txt    当前URL之后的地址
/debug_wfile.txt  根目录(域名)之后的地址

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-05-22
  • 2022-02-11
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-02
猜你喜欢
  • 2022-12-23
  • 2021-11-06
  • 2021-08-02
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-30
相关资源
相似解决方案