我想知道$this-> name和$this-> $name之间有什么区别?还有$这个必须严格命名这个,还是可以做什么?
$这是一个保留的变量名称,不能用于其他任何东西.它特别指向您当前正在工作的对象.您必须使用$this,因为您不知道将分配哪个变量对象.
原文链接:https://www.f2er.com/php/140172.html$this-> name指的是当前类的变量名
$this-> $name指的是$name的值的类变量.从而
$name = "name"; echo $this->$name; // echos the value of $this->name. $name = "test"; echo $this->$name; // echos the value of $this->test