php-src/Zend/tests/lsb_004.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

22 lines
341 B
PHP

--TEST--
ZE2 Late Static Binding testing get_called_class()
--FILE--
<?php
class TestClass {
public static function getClassName() {
return get_called_class();
}
}
class ChildClass extends TestClass {}
echo TestClass::getClassName() . "\n";
echo ChildClass::getClassName() . "\n";
?>
==DONE==
--EXPECT--
TestClass
ChildClass
==DONE==