(PHP)在xxx目录中显示可用的文本文件

时间:2014-05-15 14:40:13

标签: php

我在txt文件中保存编辑日志,我的问题是 如何在日志目录中回显/显示所有可用的log / txt文件

我已经为读取文件制作了功能

function readFile($filename) {
    $myfile = fopen("$filename", "r") or die("Unable to open file!");
    // Output one line until end-of-file
    while(!feof($myfile)) {
      echo fgets($myfile) . "<br>";
    }
    fclose($myfile);    
}

上面的代码只是readfile的函数,我的问题是显示可用的文件,谢谢

1 个答案:

答案 0 :(得分:2)

您正在考虑使用opendir()DirectoryIterator类。

关于Stack Overflow的类似问题。

PHP script to loop through all of the files in a directory?

应该让你朝着正确的方向前进。