Mantis - Quercus
Viewing Issue Advanced Details
3565 minor always 06-18-09 08:00 06-18-09 08:00
waltercruz  
 
normal  
new 4.0.0  
open  
none    
none  
0003565: get_object_vars don't respect PHP visibility
Running the example from php.net get_object_vars on http://php.net/get_object_vars [^] I get a different result.

PHP:
array(2) {
  ["b"]=>
  int(1)
  ["c"]=>
  NULL
}
array(4) {
  ["a"]=>
  NULL
  ["b"]=>
  int(1)
  ["c"]=>
  NULL
  ["d"]=>
  NULL
}

QUERCUS:

array(4) {
  ["a"]=>
  NULL
  ["b"]=>
  int(1)
  ["c"]=>
  NULL
  ["d"]=>
  NULL
}
array(4) {
  ["a"]=>
  NULL
  ["b"]=>
  int(1)
  ["c"]=>
  NULL
  ["d"]=>
  NULL
}

quercus is not respecting private and static from PHP.

There are no notes attached to this issue.