Ver Mensaje Individual
  #4 (permalink)  
Antiguo 01/09/2009, 10:51
Avatar de gjx2
gjx2
 
Fecha de Ingreso: agosto-2008
Ubicación: R.D
Mensajes: 1.153
Antigüedad: 16 años, 5 meses
Puntos: 139
Respuesta: Problema con protected

Intenta de esta forma.

Código PHP:
Ver original
  1. class A {
  2. protected $nombre = "Miguel";
  3. }
  4.  
  5.  
  6. class B extends A {
  7.  
  8. function ver() {
  9. return $this->nombre;
  10. }
  11.  
  12. }
  13.  
  14.  
  15. $n = new B();
  16.  
  17. echo $n->ver();