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.