Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/09/2009, 21:24
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: Borrar imagen del servidor

Prueba algo asi:
Código PHP:
Ver original
  1. if (file_exists($destino)) {
  2.      unlink($destino);
  3. } else {
  4.      die("no existe el archivo $destino");
  5. }

Saludos.