Ver Mensaje Individual
  #4 (permalink)  
Antiguo 05/10/2007, 07:47
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 7 meses
Puntos: 2135
Re: problema con la herencia de memCache

Lee la documentacion aloon, la herencia lo que hace es EXTENDER el objeto, con sus propiedades y metodos en tu clase:

Código PHP:
<?
class myCache extends Memcache {
       private 
$iscached=false;
       private 
$key='';
       private 
$seconds=0;

       public function 
__construct(){
                
$connected $this->connect('127.0.0.1'11211);
                if( !
$connected ) {
                      throw new 
Exception("No se ha podido conectar al server Memcache");
                }
       }

       public function 
start($key,$seconds){
                
$this->key=$key;
                
$this->seconds=$seconds;
                
$data=$this->get($key);
                if(
$data==''){
                          
$this->iscached=false;
                          return 
true;
                }else{
                         echo 
$data;
                         
$this->iscached=true;
                         return 
false;
                }
         }
         public function 
end(){
                if(!
$this->iscached){
                        
$data ob_get_contents();
                        
$this->set($this->key,$data,false,$this->seconds);
                 }
         }
}

?>
Saludos.