|
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-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 18:00:01 2025 UTC |
Ugly workaround: Class Foo { function bar() {} } $class = 'Foo'; eval ($class . '::bar();');