summaryrefslogtreecommitdiff
path: root/Zend/tests/get_class_vars_007.phpt
blob: 6aea0e2483838cdf2b151d0c4d14c0c02ff55003 (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
--TEST--
get_class_vars(): Testing with static properties
--FILE--
<?php

class A {
	static public $a, $aa;
	static private $b, $bb;
	static protected $c, $cc;

	static public function test() {
		var_dump(get_class_vars(__CLASS__));
	}
}

var_dump(get_class_vars('A'));
var_dump(A::test());

?>
--EXPECT--
array(2) {
  ["a"]=>
  NULL
  ["aa"]=>
  NULL
}
array(6) {
  ["a"]=>
  NULL
  ["aa"]=>
  NULL
  ["b"]=>
  NULL
  ["bb"]=>
  NULL
  ["c"]=>
  NULL
  ["cc"]=>
  NULL
}
NULL