Ver Mensaje Individual
  #20 (permalink)  
Antiguo 09/08/2011, 07:54
Avatar de RIVERMILLOS
RIVERMILLOS
 
Fecha de Ingreso: marzo-2010
Mensajes: 1.336
Antigüedad: 14 años, 10 meses
Puntos: 15
Respuesta: Duda con clase para la DB(singleton).

Lo modifique asi para que no hiciera el parsing,

Código PHP:
Ver original
  1. if(Registry::has($sIniFile))
  2.         {
  3.            
  4.             return Registry::get($sIniFile);
  5.            
  6.         }else
  7.          {
  8.            
  9.             $config  = new Reader($sIniFile);  
  10.        
  11.             $config_data = $config->getConfig();
  12.  
  13.             $database_class = key($config_data);
  14.  
  15.             include($database_class.'.class.php');
  16.            
  17.             $db = new $database_class($config);
  18.            
  19.             Registry::set($sIniFile, $db);  
  20.            
  21.             return $db;  
  22.            
  23.          }

pero tengo el siguiente error.



[09-Aug-2011 09:53:53] PHP Fatal error: Using $this when not in object context in Registry.class.php on line 19



saludos