当前位置:Gxlcms > PHP教程 > 用了构造函数为什么这个还是2?

用了构造函数为什么这个还是2?

时间:2021-07-01 10:21:17 帮助过:5人阅读

结果为什么是2而不是5?

class a{
    public $age=2;
    public function __constrator(){
       $this->age=$age+3;
    }
    
}

$k=new a();
echo $k->age;

回复内容:

结果为什么是2而不是5?

class a{
    public $age=2;
    public function __constrator(){
       $this->age=$age+3;
    }
    
}

$k=new a();
echo $k->age;

笑死我了 __constrator 变成 __construct 以及 $this->age=$this->age+3;

class a{
    public $age=2;
    public function __constrator(){
       $this->age=$this->age+3; // 这里
    } 
    
}

$k=new a();
echo $k->age;

一下这条少了一个$this->

 $this->age=$this->age+3;

人气教程排行