php – 使用fseek逐行读取一个文件

前端之家收集整理的这篇文章主要介绍了php – 使用fseek逐行读取一个文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何使用fseek逐行读取文件

代码可以很有帮助.必须是跨平台和纯PHP.

提前谢谢了

问候

杰拉

问题是使用fseek,所以只能假设性能是一个问题,而file()不是解决方案.这是一个使用fseek的简单方法

我的file.txt

#file.txt
Line 1
Line 2
Line 3
Line 4
Line 5

代码

<?PHP

$fp = fopen('file.txt','r');

$pos = -2; // Skip final new line character (Set to -1 if not present)

$lines = array();
$currentLine = '';

while (-1 !== fseek($fp,$pos,SEEK_END)) {
    $char = fgetc($fp);
    if (PHP_EOL == $char) {
            $lines[] = $currentLine;
            $currentLine = '';
    } else {
            $currentLine = $char . $currentLine;
    }
    $pos--;
}

$lines[] = $currentLine; // Grab final line

var_dump($lines);

输出

array(5) {
   [0]=>
   string(6) "Line 5"
   [1]=>
   string(6) "Line 4"
   [2]=>
   string(6) "Line 3"
   [3]=>
   string(6) "Line 2"
   [4]=>
   string(6) "Line 1"
}

你不必象我这样追加到$lines数组,如果这是脚本的目的,你可以立即打印输出.如果要限制行数,也很容易引入一个计数器.

$linesToShow = 3;
$counter = 0;
while ($counter <= $linesToShow && -1 !== fseek($fp,SEEK_END)) {
   // Rest of code from example. After $lines[] = $currentLine; add:
   $counter++;
}
原文链接:https://www.f2er.com/php/138682.html

猜你在找的PHP相关文章