当前位置: 代码迷 >> 综合 >> php 模拟 tail -f
  详细解决方案

php 模拟 tail -f

热度:47   发布时间:2023-10-20 09:04:52.0
<?php
$handle = popen("tail -f /var/log/nginx/access.log 2>&1", 'r');while(!feof($handle)) {$buffer = fgets($handle);echo "$buffer\n";flush();
}
pclose($handle);
  相关解决方案