php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #42302 Class magic methods
Submitted: 2007-08-14 21:27 UTC Modified: 2007-08-15 13:01 UTC
From: brent dot hansen at gmail dot com Assigned:
Status: Not a bug Package: Documentation problem
PHP Version: 5.2.4RC1 OS: XP
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
19 - 16 = ?
Subscribe to this entry?

 
 [2007-08-14 21:27 UTC] brent dot hansen at gmail dot com
Description:
------------
This could also be a poor documentation issue.

http://www.php.net/manual/en/language.oop5.paamayim-nekudotayim.php (aka Scope Resolution Operator ::) states that "When an extending class overrides the parents definition of a method, PHP will not call the parent's method. It's up to the extended class on whether or not the parent's method is called. This also applies to Constructors and Destructors, Overloading, and Magic method definitions."

leading to the conclusion that magic methods (e.g., __call) are available as class::_somefunction()

if this is just a documentation error please correct all instances of "class" with "object".


Reproduce code:
---------------
class sometest {
  function __call($method, $arguments) {
    echo $method;
  }
}

// Test #1
$mytest = new sometest;
$mytest->dont_die();
// Test #2
sometest::dont_die();




Expected result:
----------------
// Test #1
dont_die

// Test #2
dont_die

Actual result:
--------------
// Test #1
dont_die

// Test #2
Fatal error: Call to undefined method testclass::dont_die()

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2007-08-15 08:08 UTC] jani@php.net
Reclassified.
 [2007-08-15 13:01 UTC] colder@php.net
"When an extending class overrides the parents definition of a method..."

So no, nothing leads to the conclusion that the magic method __call is used on static calls.

What it means is that:

class A {
  function __call($method, $arguments) {
    echo $method;
  }
}

class B extends A  {
  function __call($method, $arguments) {
    // here, A::__call won't be automatically called
    // as B overrides the definition of A::__call

    // you've to use for example:
    parent::__call($method, $arguments);
  }
}

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 20 05:01:27 2024 UTC