标签: php class introspection
使用此代码:
<?php class a { public static function type() { echo get_class(); } } class b extends a { } echo b::type();
输出a。我想要调用类的名称:b。有可能吗?
a
b
答案 0 :(得分:1)
如果您运行的是PHP 5.3或更高版本:get_called_class()将完成工作
get_called_class()