Ver Mensaje Individual
  #2 (permalink)  
Antiguo 28/07/2011, 19:28
Avatar de andresdzphp
andresdzphp
Colaborador
 
Fecha de Ingreso: julio-2011
Ubicación: $this->Colombia;
Mensajes: 2.749
Antigüedad: 12 años, 9 meses
Puntos: 793
Respuesta: No recivo datos fuera del contructor

Estas intentando usar un array que no existe y luego de esto lo creas. Así debería ser el orden.

Código PHP:
Ver original
  1. $this->atrID = Array(
  2.             "id" => "f_id",
  3.             "nombre" => "f_archivo",
  4.             "directorio" => "f_dir",
  5.             "fechaH" => "f_date",
  6.             "tamano" => "f_size",
  7.             "por" => "f_byid",
  8.             "tipo" => "f_type"
  9.         );
  10.  
  11.   $this->exist = $this->getExist();
__________________
Si sabemos como leer e interpretar el manual será mucho más fácil aprender PHP. En lugar de confiar en ejemplos o copiar y pegar - PHP