2012-12-31 130 views

回答

0

讓我們假設你有,你上傳你的圖片的文件夾名爲圖片 所以該文件夾中有一個名爲圖像test.jpg。此代碼將刪除該文件夾中的該圖像。給了他它使用一個數據庫,但我也想給他不也許還可以利用數據庫中的第二個例子一個偉大的答案 @大衛拉比諾維茨感謝它也將幫助他

<?php 
$file ="test.jpg"; 
$filedel="images/".$file; 
if(file_exists($file)){ 
echo "file exits"; 
unlink($filedel); 
else{ 
echo "the file you want to delete does nto exist "; 
} 
?> 
4

使用unlink函數。

//before deleting the path from database, get it in one variable using php 
$filename = path from database; 
unlink($filename); 
0

PHP unlink功能從目錄用於刪除現有的文件

$filename = 'define file name here with proper path'; 
unlink($filename); 
相關問題