|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-01-31 19:44 UTC] felipe@php.net
[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
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 09:00:01 2025 UTC |
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 ) )