(PHP 5 >= 5.3.0, PHP 7, PHP 8)
get_called_class — 后期静态绑定("Late Static Binding")类的名称
此函数没有参数。
返回类的名称。
示例 #1 get_called_class() 的使用
<?php
class foo {
    static public function test() {
        var_dump(get_called_class());
    }
}
class bar extends foo {
}
foo::test();
bar::test();
?>以上示例会输出:
string(3) "foo" string(3) "bar"