ฟังก์ชั่นลบโฟลเดอร์ (Remove Folder)
(4) Comments
บันทึกโดย วันที่ 5 December 2007 | 934 views Function
<?php
function removeFolder($dir){
if(!is_dir($dir))
return false;
for($s = DIRECTORY_SEPARATOR, $stack = array($dir), $emptyDirs = array($dir); $dir = array_pop($stack);){
if(!($handle = @dir($dir)))
continue;
while(false !== $item = $handle->read())
$item != '.' && $item != '..' && (is_dir($path = $handle->path . $s . $item) ?
array_push($stack, $path) && array_push($emptyDirs, $path) : unlink($path));
$handle->close();
}
for($i = count($emptyDirs); $i--; rmdir($emptyDirs[$i]));
}
?>
Eaxmple
removeFolder("ชื่อโฟลเดอร์");

