我有一个 php 循环,它显示目录中的所有文件:
<?php
// Define the full path to your folder from root
$filepath = 'castlewp/cv/'; // The place the files will be uploaded to.
$path = $_SERVER['DOCUMENT_ROOT'] . $filepath;
// Open the folder
$dir_handle = @opendir($path) or die("Unable to open $path");
// Loop through the files
while ($file = readdir($dir_handle)) {
if($file == "." || $file == ".." || $file == "index.php" || $file == ".htaccess" || $file == ".htpasswd" )
continue;
echo "<li><a href=\"$file\">$file</a></li>";
}
// Close
closedir($dir_handle);
?>
我正在尝试找到一种在每个文件旁边添加一个按钮的方法,该按钮将删除该文件。我一直在玩 php unlink 但到目前为止,我只能在有人访问脚本时删除所有文件,这不是我想要的。
据我所知,这是一个相当简单的添加内容,但我对 PHP 的了解很少,因此任何建议都将不胜感激。