|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2003-06-28 17:09 UTC] ville dot tapio at fountainpark dot com
Description:
------------
Class Foo {
function bar() {}
}
$class = 'Foo';
$class::bar();
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Wed Jan 07 12:00:01 2026 UTC |
Ugly workaround: Class Foo { function bar() {} } $class = 'Foo'; eval ($class . '::bar();');