换行符的使用

$file = fopen('data.txt','a+') or die('Unable to open file!');
fwrite($file,"\r\n".'hahah');
fclose($file);

windows中,注意:使用双引号\n\r才可以换行,单引号不可以,\n\r也不可以。
linux中,注意:使用双引号\n换行。
 
posted @ 2018-03-14 11:52  学知无涯  阅读(543)  评论(0编辑  收藏  举报