สร้างฟังค์ชันเพื่อลบไฟล์ทั้งหมดในโฟลเดอร์ที่ต้องการ ขึ้นมาก่อน
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
function delAllFileInfolder($folder=''){ if (is_dir($folder)&&$folder!='') { //Get a list of all of the file names in the folder. $files = glob($folder . '/*'); //Loop through the file list. foreach($files as $file){ //Make sure that this is a file and not a directory. if(is_file($file)){ //Use the unlink function to delete the file. unlink($file); } } } } |
ใช้งานฟังค์ชันเพื่อลบไฟล์ที่อยู่ในโฟลเดอร์ พร้อมทั้งลบโฟลเดอร์ด้วย
1 2 3 4 5 |
$folder = 'part/foldername'; delAllFileInfolder($folder); if (is_dir($folder)&&$folder!='') { rmdir($folder); } |
ป้ายกำกับ:php