Reading large files from end

前端 未结 10 1581
慢半拍i
慢半拍i 2020-12-28 19:47

Can I read a file in PHP from my end, for example if I want to read last 10-20 lines?

And, as I read, if the size of the file is more than 10mbs I start getting erro

10条回答
  •  清酒与你
    2020-12-28 20:19

    Following snippet worked for me.

    $file = popen("tac $filename",'r');

    while ($line = fgets($file)) {

       echo $line;
    

    }

    Reference: http://laughingmeme.org/2008/02/28/reading-a-file-backwards-in-php/

提交回复
热议问题