php-src/Zend/tests/lsb_016.phpt
Steph Fox 6d8760677d - killed off UEXPECT
- altered EXPECT for parser errors. This may or may not be a Good Thing.
2008-05-26 14:33:44 +00: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==