php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #39067 getDeclaringClass and private attrs
Submitted: 2006-10-06 17:15 UTC Modified: 2006-10-06 17:35 UTC
From: dave at dgx dot cz Assigned:
Status: Closed Package: SPL related
PHP Version: 5.2.0RC5 OS:
Private report: No CVE-ID: None
 [2006-10-06 17:15 UTC] dave at dgx dot cz
Description:
------------
ReflectionProperty::getDeclaringClass

Reproduce code:
---------------
class A {
  private $x;

}

class B extends A {
  private $x;

}


$rc = new ReflectionClass('B');
echo $rc->getProperty('x')->getDeclaringClass()->getName();


Expected result:
----------------
B

Actual result:
--------------
A

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-10-06 17:35 UTC] tony2001@php.net
This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 22:01:29 2024 UTC