ID: 34739 Updated by: [EMAIL PROTECTED] Reported By: syre at citiz dot net -Status: Feedback +Status: Bogus Bug Type: Scripting Engine problem Operating System: win2k PHP Version: 5.1.0RC1 New Comment:
Thank you for taking the time to write to us, but this is not a bug. Please double-check the documentation available at http://www.php.net/manual/ and the instructions on how to report a bug at http://bugs.php.net/how-to-report.php __call() is not used when calling static methods. Previous Comments: ------------------------------------------------------------------------ [2005-10-05 10:55:22] [EMAIL PROTECTED] Please try using this CVS snapshot: http://snaps.php.net/php5-latest.tar.gz For Windows: http://snaps.php.net/win32/php5-win32-latest.zip ------------------------------------------------------------------------ [2005-10-05 10:42:23] syre at citiz dot net Description: ------------ a parent class has a __call a sub class inherit from the parent call parent::method whill cause undifined method error. Reproduce code: --------------- <?php class test { private $val; public function __call($m, $a) { echo "Method $m called:\n"; } } class test2 extends test { public function setX() { parent::setX(); } } $test2 = new test2(); $test2 -> setX('name'); ?> Expected result: ---------------- setX Actual result: -------------- undefined method ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=34739&edit=1