summaryrefslogtreecommitdiff
path: root/ext/standard/tests/class_object/get_object_vars_basic_002.phpt
blob: 5e7ef736f77aea4af07d9ffdd18f45913c88ea5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
--TEST--
get_object_vars(): visibility from non static methods (target object passed as arg)
--FILE--
<?php
Class A {
    private $hiddenPriv = 'A::hiddenPriv';

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

Class B extends A {
    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);

?>
--EXPECT--
---( 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) {
  ["hiddenPriv"]=>
  string(13) "A::hiddenPriv"
  ["prot"]=>
  string(7) "B::prot"
  ["pub"]=>
  string(6) "B::pub"
}