在 PHP 中设置编码、换行符、换行符、行尾 (EOL)

发布于 2024-07-25 06:32:54 字数 212 浏览 7 评论 0原文

例如,当我创建一个新文件时:

$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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

感悟人生的甜 2024-08-01 06:32:54

字符串文字的编码应与源文件的编码相匹配,要在编码之间进行转换,您可以使用 iconv

$utf8=iconv("ISO-8859-1", "UTF-8", $message);

换行完全取决于您。 您可以使用 PHP_EOL 常量,或者如果您认为可能需要改变换行符的类型,将所需的序列存储在变量中并在运行时配置它。

The encoding of a string literal should match the encoding of the source file, to convert between encodings you could use iconv.

$utf8=iconv("ISO-8859-1", "UTF-8", $message);

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.

往日情怀 2024-08-01 06:32:54

要添加回车符和换行符,请使用特殊字符 \r 和 \n。 所以:

$message = "Hello!\r\n";

To add carriage returns and linefeeds use the special characters \r and \n. So:

$message = "Hello!\r\n";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文