gpt4 book ai didi

php - 如何从 PHP 中的文本文件中读取特定行

转载 作者:行者123 更新时间:2023-12-03 23:56:50 25 4
gpt4 key购买 nike

我有一个包含很多行的 txt 文件,每行中的值都用逗号分隔。

我想单独阅读我已经使用 fgets 完成的第一行:

$head = fgets(fopen($file, 'r'));
$headValues = explode(',', $head);

但现在我想读取从第 2 行到文件末尾的每一行,并将这些值放入一个数组中。

我搜索过类似的解决方案,但没有找到

最佳答案

只需使用描述符

$fd = fopen($file, 'r');
$head = fgets($fd);
$headValues = explode(',', $head);
$data = [];

while(($str = fgets($fd)) !== false) {
$otherValues = explode(',', $str);
$data[] = $otherValues;
}

关于php - 如何从 PHP 中的文本文件中读取特定行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48725231/

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