Ver Mensaje Individual
  #5 (permalink)  
Antiguo 02/02/2012, 02:05
Fantass
 
Fecha de Ingreso: noviembre-2011
Mensajes: 19
Antigüedad: 13 años, 1 mes
Puntos: 2
Respuesta: Pasar variables de funciones

No me funciono :( o lo emplee mal

hize algo asi

Código PHP:
class algo {

$variable '';

public 
funct1(){

    
$minuevovalor 'Hello world';
    
$variable $minuevovalor;

}

public 
funct2()
{

    
var_dump($this->variable);

}

}
OUTPUT 
string ''