Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以像这样换行'\n'吗?
'\n'
还是我必须使用双引号 - "\n"?
"\n"
你必须使用双引号。否则,PHP 将按字面意思输出\n.
\n
http://php.net/manual/en/language.types.string.php
只需添加
.PHP_EOL;
使用单引号到您的行尾,您将有一个新行
要输出换行符(或任何其他控制字符),您必须始终使用双引号。
不使用双引号的另一种方法是chr()使用相应的ASCII 代码作为参数:
chr()
echo chr(10); // same as echo "\n";
否 -\n在单引号中是 '\n'。 是的 - 你必须使用双引号。