From:             gwd at heex dot pl
Operating system: Win XP
PHP version:      5.2.6
PHP Bug Type:     Class/Object related
Bug description:  Visibility of private in another Obj of that same class

Description:
------------
Private/protected property/method is visible in methods of another object
of that same class

Reproduce code:
---------------
class A {
      private $sameVar = "it's private variable!<br>";
      
      private function testMthd () {
            echo "it's private method!<br>";
      }
      
      public function testVar($otherObj) {
            echo $otherObj->sameVar;
            $otherObj->testMthd();
      }
}

$sm1 = new A();
$sm2 = new A();

$sm1->testVar($sm2);

Expected result:
----------------
it should rise an "Fatal error: Cannot access private property"

Actual result:
--------------
it's private variable!
it's private method!

-- 
Edit bug report at http://bugs.php.net/?id=45648&edit=1
-- 
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=45648&r=trysnapshot52
Try a CVS snapshot (PHP 5.3): 
http://bugs.php.net/fix.php?id=45648&r=trysnapshot53
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=45648&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=45648&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=45648&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=45648&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=45648&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=45648&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=45648&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=45648&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=45648&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=45648&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=45648&r=globals
PHP 4 support discontinued:   http://bugs.php.net/fix.php?id=45648&r=php4
Daylight Savings:             http://bugs.php.net/fix.php?id=45648&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=45648&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=45648&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=45648&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=45648&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=45648&r=mysqlcfg

Reply via email to