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.
我通常使用 PHP 来创建动态网页,现在我需要在 linux 上编写一个类似于我为我的网站编写的旧脚本的脚本,我不想用 python 重写整个东西。
我的问题很简单,我知道 '\n' 是 linux 的换行符,但这不起作用:
echo 'hello world\n';
有任何想法吗?
在 linux 上试试这个:
echo 'hello world'."\n";
或者这个(适用于任何操作系统):
echo 'hello world'.PHP_EOL;
In PHP, escape characters like \n are only interpreted if the string is surrounded with double quotes, so try:
\n
echo "hello world\n";