__set($propertyName,$value) を通じてプライベート メンバー属性を設定する場合、
$this->$propertyName = $value を使用してプライベート変数の値を変更します。
$this->gt;propertyName = の記述ルールを使用します。 $value は変数値を変更できません。
完全なコード:
クラスBaseperson{
リーリー}
__set($propertyName,$value) を通じてプライベート メンバー属性を設定する場合、
$this->$propertyName = $value を使用してプライベート変数の値を変更します。
$this->gt;propertyName = の記述ルールを使用します。 $value は変数値を変更できません。
完全なコード:
クラスBaseperson{
リーリー}
リーリー
オーナー、$this->$propertyName = $value
这样的赋值是$this
实例中变量为$propertyName
变量的值,此处的$propertyName
仍然是个变量,而$this->propertyName
は $this の所有物です;
前者の状況は次のようになります。たとえば、$propertyName = 'enable'
$propertyName = 'enable'
;
那么$this->$propertyName
就等同与 $this->enable
その場合、$this->$propertyName
は $this- と同等です。 >
を有効にします;