Thursday, November 4, 2010

xóa thư mục trong php

vì php không cho phép xóa folder ngay khi còn sub folder trong đó cho nên ta làm tuần tự xóa sub trong đó rồi xóa parent sau
để xóa 1 folder trong hàm php ta sử dụng code sau,

//xoa thu muc //true xoa het// false xoa sub function SureRemoveDir($dir, $DeleteMe) {    if(!$dh = @opendir($dir)) return;    while (false !== ($obj = readdir($dh))) {        if($obj=='.' || $obj=='..') continue;       

No comments:

Post a Comment