--TEST--
get_object_vars(): visibility from non static methods (target object passed as arg)
--FILE--
<?php
/* Prototype  : proto array get_object_vars(object obj)
 * Description: Returns an array of object properties 
 * Source code: Zend/zend_builtin_functions.c
 * Alias to functions: 
 */

Class {
    private 
$hiddenPriv 'A::hiddenPriv';

    public function 
testA($b) {
        echo 
__METHOD__ "\n"
        
var_dump(get_object_vars($b));
    } 
}

Class 
extends {
    private 
$hiddenPriv 'B::hiddenPriv';    
    private 
$priv 'B::priv';
    protected 
$prot 'B::prot';
    public 
$pub 'B::pub';

    public function 
testB($b) {
        echo 
__METHOD__ "\n";        
        
var_dump(get_object_vars($b));
    } 
}


$b = new B;
echo 
"\n---( Declaring class: )---\n";
$b->testB($b);
echo 
"\n---( Superclass: )---\n";
$b->testA($b);

?>
--EXPECTF--

---( Declaring class: )---
B::testB
array(4) {
  ["hiddenPriv"]=>
  string(13) "B::hiddenPriv"
  ["priv"]=>
  string(7) "B::priv"
  ["prot"]=>
  string(7) "B::prot"
  ["pub"]=>
  string(6) "B::pub"
}

---( Superclass: )---
A::testA
array(3) {
  ["prot"]=>
  string(7) "B::prot"
  ["pub"]=>
  string(6) "B::pub"
  ["hiddenPriv"]=>
  string(13) "A::hiddenPriv"
}