Ver Mensaje Individual
  #5 (permalink)  
Antiguo 13/05/2012, 07:58
Avatar de gjx2
gjx2
 
Fecha de Ingreso: agosto-2008
Ubicación: R.D
Mensajes: 1.153
Antigüedad: 16 años, 4 meses
Puntos: 139
Respuesta: objeto->metodo->objeto->metodo

Código PHP:
Ver original
  1. class a
  2. {
  3.  
  4. private $instancia;
  5. public function getEstado()
  6. {
  7.     if (!$this->instancia instanceof b){
  8.          $this->instancia = new b();
  9.       }
  10.          return $this->instancia;  
  11. }          
  12. }
  13. class b
  14. {
  15.     public function getDescripcion()
  16.     {
  17.             return "estado bien";
  18.            
  19.     }
  20.  
  21. }
  22. $r = new a();
  23. echo $r->getEstado()->getDescripcion();

Saludos.