在 PHP 中设置编码、换行符、换行符、行尾 (EOL)
例如,当我创建一个新文件时:
$message = "Hello!";
$fh = fopen(index.html, 'w');
fwrite($fh, $message);
fclose($fh);
如何在 PHP 中设置它的编码(utf-8 或 shift-jis 或 euc-jp)和换行符(LF 或 CR+LF 或 CR)?
For example, when I create a new file:
$message = "Hello!";
$fh = fopen(index.html, 'w');
fwrite($fh, $message);
fclose($fh);
How can I set it's encoding(utf-8 or shift-jis or euc-jp) and linebreaks(LF or CR+LF or CR) in PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
字符串文字的编码应与源文件的编码相匹配,要在编码之间进行转换,您可以使用 iconv。
换行完全取决于您。 您可以使用 PHP_EOL 常量,或者如果您认为可能需要改变换行符的类型,将所需的序列存储在变量中并在运行时配置它。
The encoding of a string literal should match the encoding of the source file, to convert between encodings you could use iconv.
Line breaks are entirely up to you. You could use the PHP_EOL constant, or if you think you might need to vary the type of line break, store the desired sequence in a variable and configure it at runtime.
要添加回车符和换行符,请使用特殊字符 \r 和 \n。 所以:
To add carriage returns and linefeeds use the special characters \r and \n. So: