PHP里如何读取文件的指定一行?

2025-01-05 12:45:15
推荐回答(2个)
回答1:

$c = getLine('./a.txt', 10); // 读取a.txt文件第10行内容
echo $c;
/**
 * 获取指定行内容
 *
 * @param $file 文件路径
 * @param $line 行数
 * @param $length 指定行返回内容长度
 */
function getLine($file, $line, $length = 4096){
$returnTxt = null; // 初始化返回
$i = 1; // 行数

$handle = @fopen($file, "r");
if ($handle) {
while (!feof($handle)) {
$buffer = fgets($handle, $length);
if($line == $i) $returnTxt = $buffer;
$i++;
}
fclose($handle);
}
return $returnTxt;
}

回答2:

用file读出以后,直接使用行号饮用各行,例如:

$a=file('abc.txt');

那么显示第5行的语句是:

echo $a[5];