mirror of
https://github.com/php/php-src.git
synced 2024-12-18 22:41:20 +08:00
34 lines
379 B
Plaintext
34 lines
379 B
Plaintext
|
--TEST--
|
||
|
get_class_vars(): Simple test
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
class A {
|
||
|
public $a = 1;
|
||
|
private $b = 2;
|
||
|
private $c = 3;
|
||
|
}
|
||
|
|
||
|
class B extends A {
|
||
|
static public $aa = 4;
|
||
|
static private $bb = 5;
|
||
|
static protected $cc = 6;
|
||
|
}
|
||
|
|
||
|
|
||
|
var_dump(get_class_vars('A'));
|
||
|
var_dump(get_class_vars('B'));
|
||
|
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
array(1) {
|
||
|
["a"]=>
|
||
|
int(1)
|
||
|
}
|
||
|
array(2) {
|
||
|
["a"]=>
|
||
|
int(1)
|
||
|
["aa"]=>
|
||
|
int(4)
|
||
|
}
|