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