$this->$propertyName = $value,$this->propertyName = $value的区别?

WBOY
發布: 2016-07-06 13:53:49
原創
1185 人瀏覽過

在通过__set($propertyName,$value)设置private成员属性时,
用$this->$propertyName = $value的写法才可以进行private变量值的修改,
采用$this->propertyName = $value的写法则不能进行变量值的修改。

完整代码:

class BasePerson{

<code>   private $name;
   private $age;
   private $average;
   function __construct(){
       $num_args = func_num_args();
       if($num_args == 1){
           $this->name = func_get_arg(0);
       } elseif($num_args == 2){
           $this->name = func_get_arg(0);
           $this->age = func_get_arg(1);
       } elseif($num_args == 3){
           $this->name = func_get_arg(0);
           $this->age = func_get_arg(1);
           $this->average = func_get_arg(2);
       }
   }
   
   private function __set($propertyName,$propertyValue){
       echo "BasePerson __set()";
       if($propertyName == "name"){
           if($propertyValue == "zhangsan" || $propertyValue == "wangwu"){
               $this->$propertyName = $propertyValue;
           }
       } elseif($propertyName=="age"){
           if($propertyValue >150 || $propertyValue $propertyName = $propertyValue;
   }
   
   function __toString(){
       return "name:".($this->name)."age:".($this->age)."average".($this->average);
   }
</code>
登入後複製
登入後複製

}

回复内容:

在通过__set($propertyName,$value)设置private成员属性时,
用$this->$propertyName = $value的写法才可以进行private变量值的修改,
采用$this->propertyName = $value的写法则不能进行变量值的修改。

完整代码:

class BasePerson{

<code>   private $name;
   private $age;
   private $average;
   function __construct(){
       $num_args = func_num_args();
       if($num_args == 1){
           $this->name = func_get_arg(0);
       } elseif($num_args == 2){
           $this->name = func_get_arg(0);
           $this->age = func_get_arg(1);
       } elseif($num_args == 3){
           $this->name = func_get_arg(0);
           $this->age = func_get_arg(1);
           $this->average = func_get_arg(2);
       }
   }
   
   private function __set($propertyName,$propertyValue){
       echo "BasePerson __set()";
       if($propertyName == "name"){
           if($propertyValue == "zhangsan" || $propertyValue == "wangwu"){
               $this->$propertyName = $propertyValue;
           }
       } elseif($propertyName=="age"){
           if($propertyValue >150 || $propertyValue $propertyName = $propertyValue;
   }
   
   function __toString(){
       return "name:".($this->name)."age:".($this->age)."average".($this->average);
   }
</code>
登入後複製
登入後複製

}

<code>$name = 'test';
$$name = '123';
var_dump($test);  //输出123
//希望你能理解

//同理
$this->$proertyName //需要看$proertyName的值, 是设置$proertyName的值这个属性
$proertyName = 'age';
$this->$proertyName = '12';
var_dump($this->age);  //输出12

$this->proertyName  //设置的是proertyName这个属性</code>
登入後複製

楼主,$this->$propertyName = $value 这样的赋值是$this实例中变量为$propertyName变量的值,此处的$propertyName仍然是个变量,而$this->propertyName就是$this的属性了;

前者的情况是这样的,例如$propertyName = 'enable';
那么$this->$propertyName 就等同与 $this->enable;

相關標籤:
php
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板