mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
20 lines
335 B
PHP
20 lines
335 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";
|
|
?>
|
|
--EXPECT--
|
|
TestClass
|
|
ChildClass
|