2012-04-06 112 views
-1

如何使用PHP代碼刪除文件系統上的文件?使用PHP刪除文件

<?php 
if (isset($_GET['remove']) && is_numeric($_GET['remove'])) 
{ 
//Delete here using $_GET['remove'] value 
} 

if (isset($_POST['Submit']) && $_POST['Submit'] == 'Remove Selected') 
{ 
$id = array(); 
$id = $_POST['removeid']; 
//print_r($id); 
if (count($id) > 0) 
{ 
foreach ($id as $removeid) 
{ 
    //Delete here using $removeid value 
} 
} 
} 
?> 
+0

花點時間,看看你的問題已經被問(名單彈出的「問題具有類似標題」您發佈之前),或者只是做了在stackoverflow頁面搜索。查看頁面右側的**相關**問題...... – 2012-04-06 16:05:15

回答

-1

使用PHP的unlink

+0

請詳細說明您的答案,解釋如何使用它,而不是發佈鏈接到手冊... – JMax 2012-07-20 09:41:10

0
unlink (string $filename [, resource $context ]) 

在獲得更多細節:php.net manual