php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #64059 Backwards Incompatible __callStatic Behavior
Submitted: 2013-01-23 22:46 UTC Modified: 2013-01-23 23:38 UTC
From: php at anthonybishopric dot com Assigned:
Status: Closed Package: Documentation problem
PHP Version: 5.4.11, 5.3.x OS: All
Private report: No CVE-ID: None
View Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
If you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: php at anthonybishopric dot com
New email:
PHP Version: OS:

 

 [2013-01-23 22:46 UTC] php at anthonybishopric dot com
Description:
------------
PHP 5.4 seems to have changed the behavior of __callStatic when invoked inside 
the 
object context of the defining class. 

If both __call and __callStatic are defined, then inaccessible methods when 
invoked with a static context are sent to __callStatic. However, inside an 
object 
context, inaccessible methods that use the 'static', 'self' or $classname to 
invoke the method still get delegated to __call. 

In 5.3, statically invoked, inaccessible methods delegated to __callStatic, no 
matter where they are invoked.

This is a breaking change that should be listed on the PHP 5.4 backwards 
incompatible change list. If this is an unintended change it should be fixed as 
a 
bug.

Test script:
---------------
class Magic{
	
	public static function __callStatic($name, $args){
		echo "__callStatic($name) invoked!\n";
	}

	public function __call($name, $args){
		echo "__call($name) invoked!\n";
	}
	
	public function foo(){
		Magic::bar();  // __call, but should be __callStatic
		static::bar(); // __call, but should be __callStatic
		self::bar();   // __call, but should be __callStatic
		$this->bar();  // correctly is __call
	}
}

$magic = new Magic();
$magic->foo();

Expected result:
----------------
__callStatic(bar) invoked!
__callStatic(bar) invoked!
__callStatic(bar) invoked!
__call(bar) invoked!

Actual result:
--------------
__call(bar) invoked!
__call(bar) invoked!
__call(bar) invoked!
__call(bar) invoked!

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2013-01-23 23:38 UTC] php at anthonybishopric dot com
Sorry, closing this - it appears this behavior was introduced sometime during 
5.3.x - I tested on 5.3.3.

Also found https://bugs.php.net/bug.php?id=51176 which suggests this is not a bug.
 [2013-01-23 23:38 UTC] php at anthonybishopric dot com
-Status: Open +Status: Closed -PHP Version: 5.4.11 +PHP Version: 5.4.11, 5.3.x
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Fri Apr 04 22:01:29 2025 UTC