标签: php
我有一个类Place,其中包含一个名为thing()的函数。我希望能够将该方法作为变量访问,例如$dc=new Place; echo $dc->thing;。如何在不创建成员变量的情况下做到这一点?
Place
thing()
$dc=new Place; echo $dc->thing;
答案 0 :(得分:0)
找到我要找的东西! 我需要重载PHP's __get() function.
__get()