php-src/Zend/tests/lsb_016.phpt
Gabriel Caruso ded3d984c6 Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
2018-02-20 21:53:48 +01:00

42 lines
605 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;
?>
==DONE==
--EXPECT--
TestChild
TestChild
TestChild
==DONE==