可以搜索了解PHP的可变变量。// 这是访问对象中名为$name的变量 $this->name // 这是访问对象中的可变变量,你可以理解成动态变量,变量名由$name的值决定 $this->$name
可以搜索了解PHP的可变变量。