gpt4 book ai didi

php - fwrite 不会断行

转载 作者:行者123 更新时间:2023-12-02 07:50:54 26 4
gpt4 key购买 nike

我正在写这个:

 $fh = fopen('public/newsletter.txt', 'w');
foreach($entries as $row) {
fwrite($fh, 'e-mail\n');
fwrite($fh, $row->new_email . ';');
}
fclose($fh);

希望如此

email
email@example.com;

但是我得到了

e-mail\nemail@example.com;

我该如何解决这个问题?

最佳答案

用双引号代替单引号。

fwrite($fh, "e-mail\n");
^ ^

字符组合 \n 在双引号内时被视为换行符。但是当在单引号内时,它不会被处理并且字母 \ 后跟 n

关于php - fwrite 不会断行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3865141/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com