gpt4 book ai didi

php - 使php中的新行写入文件

转载 作者:行者123 更新时间:2023-12-03 20:36:17 27 4
gpt4 key购买 nike

我试过这个,但不会工作

<?php
$myfile = fopen("newfile.txt", "w") or die("Unable to open file!");
$txt = "Mickey Mouse\n";
fwrite($myfile, $txt);
$txt = "Minnie Mouse\n";
fwrite($myfile, $txt);
fclose($myfile);
?>

这是它在我的 newfile.txt 中的显示方式:
Mickey MouseMinnie Mouse`

但我想要这样:
Mickey Mouse
Minnie Mouse

最佳答案

最好使用 PHP_EOL。它是跨平台的,会自动为 PHP 运行的平台选择正确的换行符。

$txt = "Goofy".PHP_EOL;

关于php - 使php中的新行写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26322453/

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