如何在类中但在函数外部访问变量?

时间:2016-02-17 08:35:00

标签: php class

我做了以下代码:

Javascript

我尝试回复$ a但这不起作用, 我怎样才能回显在类中但在函数外部声明的变量?

2 个答案:

答案 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();