l'esempio fornito sul manuale per eliminare file/cartelle...
Codice PHP:
    function recursiveDelete($str){
        if(
is_file($str)){
            return @
unlink($str);
        }
        elseif(
is_dir($str)){
            
$scan glob(rtrim($str,'/').'/*');
            foreach(
$scan as $index=>$path){
                
recursiveDelete($path);
            }
            return @
rmdir($str);
        }
    } 
...ha un piccolo problema: non cancella i file/cartelle che iniziano con "." (come ".htaccess") come potrei fare in modo di risolvere questo problema?