php-src/Zend/tests/get_class_vars_002.phpt

50 lines
683 B
Plaintext
Raw Permalink Normal View History

--TEST--
get_class_vars(): Testing the scope
--FILE--
<?php
class A {
2020-02-03 21:52:20 +00:00
public $a = 1;
private $b = 2;
private $c = 3;
}
class B extends A {
2020-02-03 21:52:20 +00:00
static public $aa = 4;
static private $bb = 5;
static protected $cc = 6;
}
class C extends B {
2020-02-03 21:52:20 +00:00
public function __construct() {
var_dump(get_class_vars('A'));
var_dump(get_class_vars('B'));
2018-09-16 17:16:42 +00:00
2020-02-03 21:52:20 +00:00
var_dump($this->a, $this->b, $this->c);
}
}
new C;
?>
--EXPECTF--
array(1) {
["a"]=>
int(1)
}
array(3) {
["a"]=>
int(1)
["aa"]=>
int(4)
["cc"]=>
int(6)
}
Warning: Undefined property: C::$b in %s on line %d
Warning: Undefined property: C::$c in %s on line %d
int(1)
NULL
NULL