|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-12-18 13:45 UTC] gregorv at web dot de
[2015-12-18 13:57 UTC] nikic@php.net
-Status: Open
+Status: Closed
-Assigned To:
+Assigned To: nikic
[2015-12-18 13:57 UTC] nikic@php.net
[2015-12-18 13:58 UTC] sergey dot karavay at gmail dot com
-Status: Closed
+Status: Open
[2015-12-18 13:58 UTC] sergey dot karavay at gmail dot com
[2015-12-18 14:00 UTC] sergey dot karavay at gmail dot com
-Status: Open
+Status: Closed
[2015-12-18 14:00 UTC] sergey dot karavay at gmail dot com
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 21 04:00:02 2025 UTC |
Description: ------------ Define __call and __callStatic methods for a class. Then try to call both static and non-static methods as a reserved keyword (for example, list). Test script: --------------- <?php class Testing { public function scopeList() { echo "scopeList"; } public function __call($method, $parameters) { if($method == "list") { $this->scopeList(); } } public static function __callStatic($method, $parameters) { echo 1; die(); $instance = new static; call_user_func_array([$instance, $method], $parameters); } } Testing::list(); // fails Testing::{'list'}(); // works $testing = new Testing(); $testing->list(); //works Expected result: ---------------- The same behavior for both (both fails or both works). Actual result: -------------- Fails for static call, works for non-static.