我在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的函数,我的问题是显示可用的文件,谢谢
答案 0 :(得分:2)
您正在考虑使用opendir()
或DirectoryIterator
类。
关于Stack Overflow的类似问题。
PHP script to loop through all of the files in a directory?
应该让你朝着正确的方向前进。