PHP CLI上的新行

我有一个PHP的CLI脚本,并不能得到输出在新的行中断。 我做

echo 'this is my text\r\n'; echo 'next line'; 

这给了

 this is my text\r\nnext line 

关于如何在不同的线路上获得输出的任何想法?

使用双引号"

 echo "next line\n"; 

另外你可以使用系统相关的常量PHP_EOL

 echo "this is my text" . PHP_EOL; 

转义序列只在双引号内部parsing,而不是单引号。

http://php.net/manual/en/language.types.string.php

使用双引号代替。 "