mirror of
https://github.com/php/php-src.git
synced 2024-11-25 10:54:15 +08:00
317b48f3af
- Fixed bug #45862 (get_class_vars is inconsistent with 'protected' and 'private' variables) - Added some tests
42 lines
477 B
PHP
42 lines
477 B
PHP
--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
|