Ver Mensaje Individual
  #3 (permalink)  
Antiguo 20/01/2007, 21:12
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: obtener valor entre clases

Lo podrias hacer asi:
Código PHP:
class 
   

      var 
$uno "uno";
      function 
primera();
       {
          
$obj = new b();
          
$obj->segunda($this->uno);
       }
   }

class 

   
{
       function 
segunda($valor)
          { 
                echo 
$valor;
          } 
   }