Sì sì!
Invece se le chiami dentro ad altre funzioni della classe stessa devi usare
$this->
es:
cmq trovi tutto e meglio anche nel manuale chm su www.php.netcodice:class abc { var $nome; function abc() { $this->nome = ""; } function fun1() { } function fun2() { .... $this->fun1() .... } }![]()