一尘不染

PHP:从文件读取特定行

php

我正在尝试使用php从文本文件中读取特定行。这是文本文件:

foo  
foo2

我如何使用php获取第二行的内容?这将返回第一行:

<?php 
$myFile = "4-24-11.txt";
$fh = fopen($myFile, 'r');
$theData = fgets($fh);
fclose($fh);
echo $theData;
?>

..但我需要第二个。

任何帮助将不胜感激


阅读 342

收藏
2020-05-29

共1个答案

一尘不染

$myFile = "4-24-11.txt";
$lines = file($myFile);//file in to an array
echo $lines[1]; //line 2

文件—将整个文件读入数组

2020-05-29