ID: 25069
Comment by: php at bobsilva dot com
Reported By: tater at potatoe dot com
Status: Open
Bug Type: Feature/Change Request
Operating System: *
PHP Version: 5CVS-2003-11-29 (dev)
New Comment:
This is fixed in 5.1 CVS
Previous Comments:
------------------------------------------------------------------------
[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