Ver originalclass Object { private $myvar = NULL; function foo() { $this->myvar = 'foo'; } function bar() { echo $this->myvar; //imprime foo. } }