From: boblecingle at hotmail dot com
Operating system: Windows XP
PHP version: 5.0.4
PHP Bug Type: Scripting Engine problem
Bug description: get_class_vars return protected property
Description:
------------
get_class_vars return protected property
or in the doc, get_class_vars must return PUBLIC property
Reproduce code:
---------------
class Person{
public $prenom;
protected $nom;
}
class Francais extends Person{
public $securiteSocial;
function test(){
print_r(get_class_vars("Francais"));
}
}
$p = new Francais();
$p->test();
Expected result:
----------------
Array ( [securiteSocial] => [prenom] => )
Actual result:
--------------
Array ( [securiteSocial] => [prenom] => [nom] => )
--
Edit bug report at http://bugs.php.net/?id=33932&edit=1
--
Try a CVS snapshot (php4): http://bugs.php.net/fix.php?id=33932&r=trysnapshot4
Try a CVS snapshot (php5.0):
http://bugs.php.net/fix.php?id=33932&r=trysnapshot50
Try a CVS snapshot (php5.1):
http://bugs.php.net/fix.php?id=33932&r=trysnapshot51
Fixed in CVS: http://bugs.php.net/fix.php?id=33932&r=fixedcvs
Fixed in release: http://bugs.php.net/fix.php?id=33932&r=alreadyfixed
Need backtrace: http://bugs.php.net/fix.php?id=33932&r=needtrace
Need Reproduce Script: http://bugs.php.net/fix.php?id=33932&r=needscript
Try newer version: http://bugs.php.net/fix.php?id=33932&r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=33932&r=support
Expected behavior: http://bugs.php.net/fix.php?id=33932&r=notwrong
Not enough info:
http://bugs.php.net/fix.php?id=33932&r=notenoughinfo
Submitted twice:
http://bugs.php.net/fix.php?id=33932&r=submittedtwice
register_globals: http://bugs.php.net/fix.php?id=33932&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=33932&r=php3
Daylight Savings: http://bugs.php.net/fix.php?id=33932&r=dst
IIS Stability: http://bugs.php.net/fix.php?id=33932&r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=33932&r=gnused
Floating point limitations: http://bugs.php.net/fix.php?id=33932&r=float
No Zend Extensions: http://bugs.php.net/fix.php?id=33932&r=nozend
MySQL Configuration Error: http://bugs.php.net/fix.php?id=33932&r=mysqlcfg