Ver Mensaje Individual
  #3 (permalink)  
Antiguo 08/07/2013, 04:32
rufus
 
Fecha de Ingreso: mayo-2009
Ubicación: Andalucia
Mensajes: 650
Antigüedad: 15 años, 6 meses
Puntos: 1
Respuesta: problema matriz errores

Código PHP:
Ver original
  1. public function adjuntar_foto($info)
  2.     {
  3.         if(!$info || empty($info) || !is_array($info))
  4.         {
  5.             array_push($errores,"no se a pasado ninguna informacion de archivo.");
  6.             return false;
  7.  
  8.         }
  9.         elseif ($info["error"] != 0)
  10.         {
  11.             array_push($errores,$errores_upload[$info["error"]]);
  12.             return false;
  13.         }
  14.         else
  15.         {
  16.         $this->archivo = basename($info["name"]);
  17.         $this->peso = $info["size"];
  18.         $this->tipo = $info["type"];
  19.         $this->nombre_tmp = $info["tmp_name"];
  20.         return true;
  21.        
  22.         }
  23.     }