Ver Mensaje Individual
  #4 (permalink)  
Antiguo 01/12/2011, 09:18
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 6 meses
Puntos: 2135
Respuesta: Llamar o hacer referencia a una propiedad

Te faltaría llamar a $this->walk() para hacerlo, aunque no me gusta mucho ese método ya que recorre 2 veces el archivo, yo lo haría así:

Código PHP:
Ver original
  1. public function walk() {
  2.         if (is_dir($this->path) && is_file($this->finalpath)) {
  3.             $this->line = file_get_contents($this->finalpath);
  4.         }
  5.     }