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.
假设我想创建一行放在 unix 文件中。
如果是windows,在php程序中,我会写:
$line .= '\r\n';
我会为 unix 写什么让 unix 行尾并转到下一行?
我怎样才能使它适用于任何环境?
谢谢
在 unix 中,您只需使用$line .= '\n';as \nis 定义新行的字符。
$line .= '\n';
\n