|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2008-01-24 09:34 UTC] felipe@php.net
  [2008-02-09 01:04 UTC] stas@php.net
  [2008-07-02 15:29 UTC] danielc@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 17:00:02 2025 UTC | 
Description: ------------ Says the documentation: "All overloading methods must not be defined as static. All overloading methods must be defined as public." However, this rule doesn't exists. Reproduce code: --------------- <?php class foobar { static private function __call($x, $y) { printf("[[%s]]\n", $x); } } $foo = new foobar; $foo->test(); ?> Expected result: ---------------- Some error message. Actual result: -------------- [[test]]