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

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

file_put_contents("log.txt", "Hello world everyone.".PHP_EOL, FILE_APPEND);

 posted on 2015-12-20 14:50  whlives  阅读(479)  评论(0编辑  收藏  举报