Wrong Reflection for extends class
| Bug #47254 | Wrong Reflection for extends class | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Submitted: | 2009-01-30 23:15 UTC | Modified: | 2009-04-27 20:04 UTC |
|
||||||||||
| From: | ivan1986 at list dot ru | Assigned: | felipe (profile) | |||||||||||
| Status: | Closed | Package: | Reflection related | |||||||||||
| PHP Version: | 5.*, 6CVS (2009-04-25) | OS: | * | |||||||||||
| Private report: | No | CVE-ID: | None | |||||||||||
[2009-01-30 23:15 UTC] ivan1986 at list dot ru
Description:
------------
I test this in two version:
ivan@ivan1986:~% /usr/bin/php -v
PHP 5.2.6-3 with Suhosin-Patch 0.9.6.2 (cli) (built: Jan 25 2009 00:51:23)
Copyright (c) 1997-2008 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2008 Zend Technologies
with XCache v1.2.2, Copyright (c) 2005-2007, by mOo
ivan@ivan1986:~% php -v
PHP 6.0.0-dev (cli) (built: Nov 8 2008 02:31:17)
Copyright (c) 1997-2008 The PHP Group
Zend Engine v3.0.0-dev, Copyright (c) 1998-2008 Zend Technologies
in CVS error now.
Reproduce code:
---------------
<?php
class A
{
protected function a() {}
}
class B extends A
{
public function b() {}
}
$B = new B();
$R = new ReflectionObject($B);
$m = $R->getMethods();
print_r($m);
?>
Expected result:
----------------
Array
(
[0] => ReflectionMethod Object
(
[name] => b
[class] => B
)
[1] => ReflectionMethod Object
(
[name] => a
[class] => A
)
)
Actual result:
--------------
Array
(
[0] => ReflectionMethod Object
(
[name] => b
[class] => B
)
[1] => ReflectionMethod Object
(
[name] => a
[class] => B
)
)
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2009-04-27 16:48 UTC] jani@php.net
[2009-04-27 18:23 UTC] ivan1986 at list dot ru
[2009-04-27 20:04 UTC] felipe@php.net