ID: 31214
User updated by: ebypdx at comcast dot net
Reported By: ebypdx at comcast dot net
Status: Open
Bug Type: Class/Object related
Operating System: Solaris 5.8
PHP Version: 4.3.10
New Comment:
I've also seen it fail out with a different fatal error "call to
undefined function". i can't determine how to make it do this instead
of giving "call on a non-object."
Previous Comments:
------------------------------------------------------------------------
[2004-12-21 02:26:26] ebypdx at comcast dot net
Description:
------------
in the most simple case, create a class with no methods except __call()
and overload it. start calling methods on an instance of that class.
the first method call will hit __call() and finish correctly. any
subsequent method calls will fail to hit __call(), resulting instead in
a fatal error.
if this is indeed a bug... i realize due to the experimental nature of
overloading in 4.3, that this may never work again. my deepest thanks
to anybody who can address this.
Reproduce code:
---------------
<?php
class BaseOverloader {
function BaseOverloader() {}
function __call($method, $args, &$returnValue) {
echo "Call to ".get_class($this)."->$method <br/>";
$returnValue = "return";
return true;
}
}
overload("BaseOverloader");
$c = new BaseOverloader();
$c->firstCall();
$c->secondCall();
?>
Expected result:
----------------
Call to BaseOverloader->firstcall
Call to BaseOverloader->secondcall
Actual result:
--------------
Call to baseoverloader->firstcall
Fatal error: Call to a member function on a non-object in
/export/vol01/opt/web/neby/partner.newedgenetworks.com/overloaded.php
on line 13
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=31214&edit=1