Ver Mensaje Individual
  #1 (permalink)  
Antiguo 13/02/2011, 00:39
Avatar de LanbreGroteo
LanbreGroteo
 
Fecha de Ingreso: agosto-2009
Ubicación: $Mx->['Veracruz']
Mensajes: 69
Antigüedad: 15 años, 5 meses
Puntos: 1
Pregunta Ayuda con variables

Tengo una variable llamada initialized la cuál en el construct es false y lo que deseo hacer es que, en la función buildpaththing si se demuestra que existe el archivo o la carpeta, cambie la variable initialized a true para después en algunas otras funciones decirles que si el fichero existe por lo tanto está inicializado y puede seguir con los códigos dentro de dicha sentencia.

Espero a ver sido lo bastante claro para que puedan ayudarme, por favor. Os dejo el código:

Código PHP:
Ver original
  1. class Unacosa
  2. {
  3.    
  4.     public $nombre = null;
  5.     public $handler = null;
  6.     public $source = null;
  7.    
  8.     private $path;
  9.     private $initialized;
  10.    
  11.        
  12.     const DS = '/';
  13.     const DEFAULT = 'default';
  14.    
  15.     public function __construct()
  16.     {
  17.         $this->path    = "unacosa/";
  18.         $this->initialized = $initialized;     
  19.     }
  20.    
  21.     public function buildPaththing($tFile=null)
  22.     {
  23.         if($tFile == null)
  24.             $tFile = $this->tName;
  25.            
  26.         foreach((array)$this->path as $thingpath) {
  27.             if (strpos('/\\', substr($thingpath, -1)) === false) {
  28.                 $thingpath .= self::DS;
  29.             }
  30.  
  31.             $fullpath = $thingpath . $tFile;
  32.             if (file_exists($fullpath))
  33.                 $initialized = true;
  34.                 echo $fullpath;
  35.         }
  36.     }
  37.        
  38.         public function getThing() {
  39.            
  40.             if($this->initialized) {
  41.                 $this->buildPaththing('thereis.tpl');
  42.             } else {
  43.                 ExceptionError::getException('Thing Error', 'Could not Initialized the Thing, 255);
  44.             }
  45.            
  46.            
  47.            
  48.         }
  49.    
  50.  
  51.        
  52. }

Dese ya, ¡Gracias!