我目前有一个脚本,允许用户查看目录中的文件。我想知道如何使这些文件也可下载。我认为它与 index.php 有关,但不确定。以为我最好检查并澄清我的脚本如下。
<?php
$path = "/home/phpprac/assesment";
$dir_handle = @opendir($path) or die("Unable to open $path");
while ($file = readdir($dir_handle)) {
if($file == "." || $file == ".." || $file == "index.php" )
continue;
echo "<a href=\"$file\">$file</a><br />";
}
// Close
closedir($dir_handle);
?>