返回指向php中本地var的函数

发布于 2024-10-05 14:41:18 字数 170 浏览 0 评论 0原文

class Person{

     var $name = "Omer";

     function get_name(){
         return $this->name;//Why not $this->$name ?
     }
}

谢谢

class Person{

     var $name = "Omer";

     function get_name(){
         return $this->name;//Why not $this->$name ?
     }
}

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

折戟 2024-10-12 14:41:18

如果您使用 $this->$name 它实际上会在 $this 中查找名称与 $name 相等的属性到。因此,在您的示例中,$this->$name 将查找 $this->Omer

If you use $this->$name it will actually look for a property in $this with the name of whatever $name is equal to. So, in your example, $this->$name would look for $this->Omer.

薯片软お妹 2024-10-12 14:41:18

为了说明@Aaron 如此雄辩地回答了什么,可以编译以下内容:

class Person{
     var $name = "Omer";
     function get_name(){
         $varname = 'name';
         return $this->$varname;
     }
}
$Person = new Person;
echo $Person->get_name(); // output = Omer

To illustrate what @Aaron has so eloquently answered, the following would compile:

class Person{
     var $name = "Omer";
     function get_name(){
         $varname = 'name';
         return $this->$varname;
     }
}
$Person = new Person;
echo $Person->get_name(); // output = Omer
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文