gpt4 book ai didi

php - 将 txt 文件的每一行读取到新的数组元素

转载 作者:IT老高 更新时间:2023-10-28 11:51:00 28 4
gpt4 key购买 nike

我正在尝试将文本文件的每一行读入一个数组,并将每一行放入一个新元素中。
到目前为止我的代码。

<?php
$file = fopen("members.txt", "r");
while (!feof($file)) {

$line_of_text = fgets($file);
$members = explode('\n', $line_of_text);
fclose($file);

?>

最佳答案

如果您不需要任何特殊处理,this应该做你正在寻找的东西

$lines = file($filename, FILE_IGNORE_NEW_LINES);

关于php - 将 txt 文件的每一行读取到新的数组元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6159683/

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