Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$title = 'question' ;) 在此先感谢,我似乎无法弄清楚。
class myClass { public $myVar = 'hello'; public function myMethod() { echo $this->myVar; } }
你在做什么:
myClass::myMethod();
或者:
$foo = new myClass(); $foo->myMethod();