30/09/2008, 15:08
|
| | | Fecha de Ingreso: julio-2008 Ubicación: 18°30'N, 69°59'W
Mensajes: 4.879
Antigüedad: 16 años, 4 meses Puntos: 416 | |
Respuesta: como eliminar informacio de mi carpeta desde php http://www.php.net/manual/es/function.rmdir.php
Sacado de los ejemplos: Código PHP: <?php $path '/path/to/my/dir'; if (file_exists(dirname($path))) { foreach (new DirectoryIterator(dirname($path)) as $file) { if (true === $file->isFile()) { unlink($file->getPathName()); } } rmdir(dirname($path)); } ?> |