gpt4 book ai didi

php - 将每个 php 数组的内容写入文本文件中的新行

转载 作者:行者123 更新时间:2023-11-29 08:08:05 27 4
gpt4 key购买 nike

我使用 while 循环从数据库中获取行并将它们收集到数组中。

现在我想要实现的是,在这个循环的每次迭代中,数组的元素应该写入文本文件中的新行

我已经尝试过内爆,但它不起作用。我可能以完全错误的方式使用它。这是我的代码:

$query = "SELECT hist FROM loch ;";
$result = mysql_query($query) or die(mysql_error());

$file = "/opt/lampp/htdocs/rrugd/ip.txt";
fopen($file,'a');

$output=array();
while($row=mysql_fetch_row($result))
{

$instr1 = implode("\n", $row);
file_put_contents($file, $instr1, FILE_APPEND | LOCK_EX);
}

我希望输出看起来像这样 -

1 2 10 5
1 2 10

但我得到的是这个 -

1 2 10 51 2 10

我哪里出错了?

最佳答案

使用 PHP_EOL 添加新行,如下所示:

file_put_contents($file, $instr1 . PHP_EOL, FILE_APPEND | LOCK_EX);   

关于php - 将每个 php 数组的内容写入文本文件中的新行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22320409/

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