ID: 25069
User updated by: tater at potatoe dot com
Reported By: tater at potatoe dot com
-Status: Feedback
+Status: Open
Bug Type: Zend Engine 2 problem
Operating System: *
PHP Version: 5CVS-2003-11-29 (dev)
New Comment:
Ever hear of a test case? Where you throw out the complications of the
real world usage, in order to present the bug as simply as possible?
Geez.
Previous Comments:
------------------------------------------------------------------------
[2003-11-28 20:55:23] [EMAIL PROTECTED]
PHP Warning: call_user_func(self::a): First argument is expected to be
a valid callback in /home/jani/t.php on line 15
WHY would you even do this inside a class?!
------------------------------------------------------------------------
[2003-08-13 04:04:07] tater at potatoe dot com
Description:
------------
If you call an object's method, $x->foo(), and then
call parent:;bar() (or self:;bar() or xyz::abc()),
$this will be defined inside bar() and point to the
original object ($x). But if you use call_user_func()
or call_user_func_array(), $this is not defined.
Reproduce code:
---------------
class foo
{
function a()
{
if (isset($this))
var_dump($this);
else
print "\$this not defined.\n";
}
function b()
{
self::a();
call_user_func(array('self','a'));
}
}
$x = new foo;
$x->b();
Expected result:
----------------
object(foo)#1 (0) {
}
object(foo)#1 (0) {
}
Actual result:
--------------
object(foo)#1 (0) {
}
$this not defined.
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=25069&edit=1