php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #62330 PHP confuse "__callStatic" with "__call"
Submitted: 2012-06-15 02:40 UTC Modified: 2015-12-20 17:29 UTC
Votes:4
Avg. Score:2.5 ± 0.9
Reproduced:2 of 3 (66.7%)
Same Version:0 (0.0%)
Same OS:1 (50.0%)
From: magike dot net at gmail dot com Assigned:
Status: Not a bug Package: Scripting Engine problem
PHP Version: 5.3.14 OS: Ubuntu Server 12.04
Private report: No CVE-ID: None
 [2012-06-15 02:40 UTC] magike dot net at gmail dot com
Description:
------------
I find PHP will call "__call" instead of "__callStatic" when I'm calling a non-
exists static method from the class (Class A) which is the parent of current class 
(Class B).

And if the class (Class C) is not the child of that class (Class A), the result 
will be correct.



Test script:
---------------
<?php

class A
{
    public function __call($name, $args)
    {
        echo "NO\n";
    }

    public static function __callStatic($name, $args)
    {
        echo "YES\n";
    }
}

class B extends A
{
    public function test()
    {
        A::test();
    }
}

class C
{
    public function test()
    {
        A::test();
    }
}

A::test();

$b = new B();
$b->test();

$c = new C();
$c->text();

Expected result:
----------------
YES
YES
YES

Actual result:
--------------
YES
NO
YES

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2012-06-15 10:46 UTC] Sjon at hortensius dot net
This is actually a feature: when you use CLASSNAME:: while extending that class, 
it mimics parent::, but to a specific class (so you can skip one parent)

You should instead use forward_static_call for this
 [2012-06-15 11:13 UTC] Sjon at hortensius dot net
I actually found a related bug, I filed it here:

https://bugs.php.net/bug.php?id=62333

PS. there is a small typo in your script, your last call to ->text() should have 
gone to ->test()
 [2013-01-02 11:01 UTC] sadasd at yahoo dot com
Please change $c->text(); to $c->test();
 [2015-12-20 17:28 UTC] tpunt@php.net
As mentioned, this is not a bug, but a feature. A "fix" was applied to PHP 5.3.3, and then reverted in PHP 5.3.4: https://3v4l.org/9kknr
 [2015-12-20 17:29 UTC] tpunt@php.net
-Status: Open +Status: Not a bug
 [2015-12-20 17:29 UTC] tpunt@php.net
As mentioned, this is not a bug, but a feature. A "fix" was applied to PHP 5.3.3, and then reverted in PHP 5.3.4: https://3v4l.org/9kknr
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Fri Apr 04 05:01:31 2025 UTC