为什么这样没有结果?
php codeadd();?>
为什么这样不行?我定义$count初始值为0,add()方法加2,然后实例化test,调用add,输出,提示错误:notice: undefined variable: count in d:\wamp\www\test\index.php on line 11
------解决方案--------------------
使用类的属性,必须是 $this->属性名 的方式。而 $变量名 (局部变量)并未定义,因此才会报 undefined variable: count