From:             paulscheltema at gmail dot com
Operating system: Windows XP / Linux Debian
PHP version:      5.2.5
PHP Bug Type:     Scripting Engine problem
Bug description:  access to private and protected class variables

Description:
------------
Hello dear developer(s),

When i setup a simple class with a protected/private var,
instanciate the class, and cast the instance to an array
i can access the protected/private var.


Reproduce code:
---------------
class test {
        public $public = 'public';
        private $private = 'private';
        protected $protected = 'protected';
}

$t = new test;
$a = (array)$t;

print '<br>public: '.$a['public'];
print '<br>private: '.$a["\0test\0private"];
print '<br>protected: '.$a["\0*\0protected"];

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

public: public

Or at most an Error like:
    Cannot access private property test::$private
as the value of the private property



Actual result:
--------------
Result:

public: public
private: private
protected: protected

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

Reply via email to