Sì sì!

Invece se le chiami dentro ad altre funzioni della classe stessa devi usare

$this->

es:

codice:
class abc
{
    var $nome;

    function abc()
    {
         $this->nome = "";
    }

    function fun1()
    {
    }

    function fun2()
    {
         .... $this->fun1() ....
    }
}
cmq trovi tutto e meglio anche nel manuale chm su www.php.net