|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-06-24 03:55 UTC] alan at akbkhome dot com
[2010-06-24 05:38 UTC] contact at swiftlytilting dot com
[2010-06-24 06:24 UTC] alan at akbkhome dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 09:00:01 2025 UTC |
Description: ------------ It seems using unnamed static functions (using __callStatic ) isn't working right with bcompiler. Reproduce code: --------------- <?php class Test { public static function __callStatic($func, $args) { echo "Name of called function: $func"; } } Test::Test_function(); Expected result: ---------------- Name of called function: Test_function Actual result: -------------- PHP Fatal error: Call to undefined method Test::Test_function() in [filename] on line 11