Borrar un directorio no vacio con PHP
Código PHP:
Ver original/**
* Remove a non empty directory
* @author Cristián Pérez
* @param string $path Folder Path
* @return bool
*/
function removeDirectory($path)
{
if( ! $d )
return false;
while ( false !== ($current = $d->read()) )
{
if( $current === '.' || $current === '..')
continue;
$file = $d->path . '/' . $current;
removeDirectory($file);
}
$d->close();
return true;
}
Fuente:
http://www.cristianperez.com/2010/01...vacio-con-php/
Saludos.