使用fseek逐行向后读取文件

时间:2010-07-13 06:06:03

标签: php file io fseek

如何使用fseek逐行向后读取文件?

代码可能会有所帮助。必须是跨平台和纯PHP。

非常感谢提前

问候

杰拉

9 个答案:

答案 0 :(得分:21)

如果您打算以任何方式阅读整个文件,只需使用file()以数组形式读取文件(每行是数组中的每个元素),然后使用array_reverse()翻转数组向后并循环遍历。或者只是做一个反向循环,从最后开始并逐渐减少每个循环。

$file = file("test.txt");
$file = array_reverse($file);
foreach($file as $f){
    echo $f."<br />";
}

答案 1 :(得分:18)

问题是要求使用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, $pos, SEEK_END)) {
   // Rest of code from example. After $lines[] = $currentLine; add:
   $counter++;
}

答案 2 :(得分:15)

<?php

class ReverseFile implements Iterator
{
    const BUFFER_SIZE = 4096;
    const SEPARATOR = "\n";

    public function __construct($filename)
    {
        $this->_fh = fopen($filename, 'r');
        $this->_filesize = filesize($filename);
        $this->_pos = -1;
        $this->_buffer = null;
        $this->_key = -1;
        $this->_value = null;
    }

    public function _read($size)
    {
        $this->_pos -= $size;
        fseek($this->_fh, $this->_pos);
        return fread($this->_fh, $size);
    }

    public function _readline()
    {
        $buffer =& $this->_buffer;
        while (true) {
            if ($this->_pos == 0) {
                return array_pop($buffer);
            }
            if (count($buffer) > 1) {
                return array_pop($buffer);
            }
            $buffer = explode(self::SEPARATOR, $this->_read(self::BUFFER_SIZE) . $buffer[0]);
        }
    }

    public function next()
    {
        ++$this->_key;
        $this->_value = $this->_readline();
    }

    public function rewind()
    {
        if ($this->_filesize > 0) {
            $this->_pos = $this->_filesize;
            $this->_value = null;
            $this->_key = -1;
            $this->_buffer = explode(self::SEPARATOR, $this->_read($this->_filesize % self::BUFFER_SIZE ?: self::BUFFER_SIZE));
            $this->next();
        }
    }

    public function key() { return $this->_key; }
    public function current() { return $this->_value; }
    public function valid() { return ! is_null($this->_value); }
}

$f = new ReverseFile(__FILE__);
foreach ($f as $line) echo $line, "\n";

答案 3 :(得分:8)

完全撤消文件:

$fl = fopen("\some_file.txt", "r");
for($x_pos = 0, $output = ''; fseek($fl, $x_pos, SEEK_END) !== -1; $x_pos--) {
    $output .= fgetc($fl);
    }
fclose($fl);
print_r($output);

当然,你想要逐行逆转......


$fl = fopen("\some_file.txt", "r");
for($x_pos = 0, $ln = 0, $output = array(); fseek($fl, $x_pos, SEEK_END) !== -1; $x_pos--) {
    $char = fgetc($fl);
    if ($char === "\n") {
        // analyse completed line $output[$ln] if need be
        $ln++;
        continue;
        }
    $output[$ln] = $char . ((array_key_exists($ln, $output)) ? $output[$ln] : '');
    }
fclose($fl);
print_r($output);

真的,Jonathan Kuhn上面有最好的答案恕我直言。唯一没有使用他的答案的情况是我知道是file或类似的功能是通过php.ini禁用的,但是管理员忘记了fseek,或者打开一个巨大的文件只是得到最后几行内容会以这种方式神奇地节省内存。

注意:不包括错误处理。并且,PHP_EOL没有合作,所以我使用“\ n”来表示行尾。因此,以上可能并不适用于所有情况。

答案 4 :(得分:6)

你不能逐行查找,因为在阅读之前你不知道这些行有多长。

你应该将整个文件读入一个行列表,或者如果文件太大而你只需要最后一行,从文件末尾读取固定大小的块并实现更复杂一点从这些数据中检测线的逻辑。

答案 5 :(得分:2)

将整个文件读入数组并进行反转,除非文件很大。

您可以使用以下内容从后到前执行文件的缓冲读取:

  • 建立一个buffer_size B - 这应该比最长的预期行长,否则你需要一些逻辑来在行太长时增加缓冲区大小
  • set offset =文件长度 - buffer_size
  • 而偏移&gt; = 0
    • 从offset
    • 读取buffer_size字节
    • 读取一行 - 它将不完整,因为我们已经跳到了行的中间,所以我们要确保我们读取的 next 缓冲区以它结束。设置offset = offset - buffer_size +行长度
    • 丢弃该行,将所有后续行读入数组并将其反转
    • 处理此数组以执行您想要执行的任何操作

答案 6 :(得分:0)

此代码向后读取文件。此代码忽略了对读取的修改,例如apache access.log有关procress的新行。

$f = fopen('FILE', 'r');

fseek($f, 0, SEEK_END);

$pos = ftell($f);
$pos--;

while ($pos > 0) {
    $chr = fgetc($f);
    $pos --;

    fseek($f, $pos);

    if ($chr == PHP_EOL) {
        YOUR_OWN_FUNCTION($rivi);
        $rivi = NULL;
        continue;
    }

    $rivi = $chr.$rivi;
}

fclose($f);

答案 7 :(得分:0)

我知道已经回答了这个问题,但是我发现了另一种也许更快的方法。

// Read last 5000 chars of 'foo.log' 

if(file_exists('foo.log') && $file = fopen('foo.log', 'r')) {
    fseek($file, -5000, SEEK_END);

    $text = stream_get_line($file, 5000); 

    var_dump($text);

    fclose($file);
}

答案 8 :(得分:0)

这是fgets($ fp)的替代品,称为fgetsr(),它以相反的顺序从文件中读取行。

该代码是逐字记录的,因此(著名的最后一句话)您应该能够将其复制到服务器上的文件中并运行它。尽管您很可能需要在fopn()调用中更改文件名。

<?php
    header('Content-Type: text/plain');
    $fp = fopen('post.html', 'r');
    
    while($line = fgetsr($fp)) {
        echo $line;
    }







    // Read a line from the file but starting from the end
    //
    // @param $fp integer The file pointer
    //
    function fgetsr($fp)
    {
        // Make this variable persistent inside this function
        static $seeked;
        
        // The line buffer that will eventually be returned
        $line = '';

        // Initially seek to the end of the file
        if (!$seeked) {
            fseek($fp, -1, SEEK_END);
            $seeked = true;
        }
        
        // Loop through all of the characters in the file
        while(strlen($char = fgetc($fp)) {

            // fgetc() advances that pointer so go back TWO places
            // instead of one
            fseek($fp, -2, SEEK_CUR);

            //
            // Check for a newline (LF). If a newline is found
            // then break out of the function and return the
            // line that's stored in the buffer.
            //
            // NB The first line in the file (ie the last to
            //    be read)has a special case
            //
            if (ftell($fp) <= 0) {
                fseek($fp, 0, SEEK_SET);
                $line = fgets($fp);
                fseek($fp, 0, SEEK_SET);
                return $line;
            } else if ($char === "\n") {
                $line = strrev($line);
                return $line . "\n";
            } else {
                $line .= $char;
            }
        }
    }
?>