php-src/Zend/tests/lsb_016.phpt
Fabien Villepinte a555cc0b3d Clean DONE tags from tests
Remove most of the `===DONE===` tags and its variations.
Keep `===DONE===` if the test output otherwise becomes empty.

Closes GH-4872.
2019-11-07 21:31:47 +01:00

40 lines
587 B
PHP

--TEST--
ZE2 Late Static Binding within hooks/magic methods
--FILE--
<?php
class TestChild extends TestParent {
public static function who() {
echo __CLASS__."\n";
}
}
class TestParent {
public function __get($var) {
static::who();
}
public function __set($var, $val) {
static::who();
}
public function __call($name, $args) {
static::who();
}
public static function who() {
echo __CLASS__."\n";
}
}
$o = new TestChild;
$o->test();
$o->a = "b";
echo $o->a;
?>
--EXPECT--
TestChild
TestChild
TestChild