一个面向对象的基础编程,该如何解决
时间:2021-07-01 10:21:17
帮助过:18人阅读
一个面向对象的基础编程
$this->$name;
$this->name;
$this->name;是调用当前对象的name属性,$this->$name;是干什么的?二者有什么区别?
------解决方案--------------------
$name = 'abc';
$this->$name;
调用当前对象的 abc 属性
------解决方案--------------------
$this->name是直接调用
$this->$name间接调用