(PHP 5 >= 5.3.0, PHP 7, PHP 8)
get_called_class — 后期靜態(tài)綁定("Late Static Binding")類的名稱
獲取靜態(tài)方法調(diào)用的類名。
返回類的名稱,如果不是在類中調(diào)用則返回 false
。
示例 #1 get_called_class() 的使用
<?php
class foo {
static public function test() {
var_dump(get_called_class());
}
}
class bar extends foo {
}
foo::test();
bar::test();
?>
以上例程會(huì)輸出:
string(3) "foo" string(3) "bar"