PHP写txt日志换行

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  根目录(域名)之后的地址
posted @ 2016-04-15 14:45  Newman·Li  阅读(1704)  评论(0编辑  收藏  举报