php – `$this-> name`和`$this – > $name`有什么区别?

前端之家收集整理的这篇文章主要介绍了php – `$this-> name`和`$this – > $name`有什么区别?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道$this-> name和$this-> $name之间有什么区别?还有$这个必须严格命名这个,还是可以做什么?
$这是一个保留的变量名称,不能用于其他任何东西.它特别指向您当前正在工作的对象.您必须使用$this,因为您不知道将分配哪个变量对象.

$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
原文链接:https://www.f2er.com/php/140172.html

猜你在找的PHP相关文章