我有一個基本的PHP腳本,顯示目錄的文件內容。下面是該腳本:PHP刪除文件腳本
<?php
$Dept = "deptTemplate";
if(isset($_REQUEST['dir'])) {
$current_dir = $_REQUEST['dir'];
} else {
$current_dir = 'docs';
}
if ($handle = opendir($current_dir)) {
while (false !== ($file_or_dir = readdir($handle))) {
if(in_array($file_or_dir, array('.', '..'))) continue;
$path = $current_dir.'/'.$file_or_dir;
if(is_file($path)) {
echo '`<a href="/Implementation/'.$Dept.'/'.$path.'">'.$file_or_dir.'</a> - [Delete button/link]<br/>`';
} else {
echo '`<a href="testFolderiFrame.php?dir='.$path.'">`'.$file_or_dir."\n`</a>` - [Delete button/link]`<br/>`";
}
}
closedir($handle);
}
?>
我想創建一個刪除鏈接/按鈕旁邊顯示每個文件並點擊時,相應的文件將被刪除。你會知道如何做到這一點?
**但是不要忘記檢查你的代碼,允許用戶刪除該文件** – ThiefMaster 2011-01-30 17:45:17
你能告訴我在代碼中添加這個函數的位置嗎? (我對php的使用經驗不多) – Jopper 2011-01-30 18:09:12