我正在尝试使用这个库http://code.google.com/p/php-tail/
它在工作时是一个很棒的工具,但我坚持使用一些配置。
目前我正在跟踪的文件是在构建类时设置的:
$tail = new PHPTail("example.log");
这很好用,也可以
$log_file = "example.log";
$tail = new PHPTail($log_file);
什么不起作用(使用 URL localhost/tail.php?file=example
$log_file = $_GET['file'].".log";
$tail = new PHPTail($log_file);
也没有
$log_file = $_REQUEST['file'].".log";
$tail = new PHPTail($log_file);
即使页面的标题设置了正确的日志路径,但脚本不会运行。我没有看到任何 PHP、JS 或 AJAX 错误。