gpt4 book ai didi

php - 使用 file() 函数的 Foreach 连续循环。

转载 作者:行者123 更新时间:2023-11-29 13:38:28 25 4
gpt4 key购买 nike

$lines = file('array2.txt');
foreach($lines as $line)
{
mysql_query("INSERT INTO test (Tweet, Date) VALUES ('$line', '22')");
}

大家好,

我正在尝试使用上面的代码来使用 file() 函数将文本文件中的行添加到数组中,这样我就可以将其放入 mysql 数据库中。我正在使用的文件包含 100 行,但使用上面的函数我最终得到了超过 116,000 行。有谁知道这是怎么造成的?先感谢您。

最佳答案

也许可以试试这个方法。您将阅读直到文件结束行。

$file = fopen("file.txt", "r");
while (!feof($file)) {
$line = fgets($file);
// Code where you make DB INSERT
}
fclose($file);

对我来说这有效,而且我没有得到任何其他记录,只有我写的那 10 条记录。

关于php - 使用 file() 函数的 Foreach 连续循环。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18445018/

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