我有一個問題,當我想刪除與笨一個目錄下的所有文件..刪除所有文件在一個目錄中使用CodeIgniter
我一直在看,並從任何教程嘗試,只是有一個問題..它總是不能刪除任何文件。
這裏是我的腳本:
@view
<a href="<?php echo base_url()?>sia/delete_allfile" title="Delete All File" onclick="return confirm('Are you sure you want delete all files?')">Delete All File</a>
@Controller
public function delete_allfile()
{
$files = glob($_SERVER['DOCUMENT_ROOT'].'upload/perizinan/*'); // get all file names
if(is_dir($path))
{
$this->session->set_flashdata('message',
'
Wrong directory !
');
redirect('sia/perizinan');
}else
{
foreach($files as $file)
{ // iterate files
if(is_file($file))
unlink($file); // delete file
}
redirect('sia/perizinan');
}
}
你得到任何錯誤? – sakibmoon