-=[ Mr. Bumblebee ]=-
_Indonesia_
| Path : /usr/src/php/Zend/tests/ |
|
|
| Current File : //usr/src/php/Zend/tests/get_class_vars_007.phpt |
--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
Copyright © 2017 || Recoded By Mr.Bumblebee