我做了以下代码:
Javascript
我尝试回复$ a但这不起作用, 我怎样才能回显在类中但在函数外部声明的变量?
答案 0 :(得分:2)
语法为:
$this->a
在属性中使用额外的$
有一个“变量变量”。
答案 1 :(得分:0)
class hoi {
public $a = 1;
function test() {
echo $this->a;/* the variable is accessed like this - no need for the $ */
}
}
$hoi = new hoi();/* required as there is no __construct() method */
$hoi->test();