&1", 'r');while(!feof($handle)) {$buffer = fgets($handle)">
当前位置:Gxlcms > PHP教程 > php实现tail命令

php实现tail命令

时间:2021-07-01 10:21:17 帮助过:15人阅读

[PHP]代码
  1. $handle = popen("tail -f /var/log/your_file.log 2>&1", 'r');
  2. while(!feof($handle)) {
  3. $buffer = fgets($handle);
  4. echo "$buffer\n";
  5. flush();
  6. }
  7. pclose($handle);
php, tail

人气教程排行