|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-03-12 09:36 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 04 14:00:01 2025 UTC |
Description: ------------ // works: class A { public function foo(){} } $bar = new A(); $bar->{'foo'}(); ------------------------------- // works not: class A { public function static foo(){} } A::{'foo'}(); ------------------------