一个面向对象的基础编程,该如何解决
程序员文章站
2022-05-01 13:48:53
...
一个面向对象的基础编程
$this->$name;
$this->name;
$this->name;是调用当前对象的name属性,$this->$name;是干什么的?二者有什么区别?
------解决方案--------------------
$name = 'abc';
$this->$name;
调用当前对象的 abc 属性
------解决方案--------------------
$this->name是直接调用
$this->$name间接调用
$this->$name;
$this->name;
$this->name;是调用当前对象的name属性,$this->$name;是干什么的?二者有什么区别?
------解决方案--------------------
$name = 'abc';
$this->$name;
调用当前对象的 abc 属性
------解决方案--------------------
$this->name是直接调用
$this->$name间接调用
相关文章
相关视频