How To watch a file write in PHP?

前端 未结 6 1917
情书的邮戳
情书的邮戳 2020-12-05 15:29

I want to make movement such as the tail command with PHP, but how may watch append to the file?

6条回答
  •  渐次进展
    2020-12-05 15:45

    $handler = fopen('somefile.txt', 'r');
    
    // move you at the end of file
    fseek($handler, filesize( ));
    // move you at the begining of file
    fseek($handler, 0);
    

    And probably you will want to consider a use of stream_get_line

提交回复
热议问题