当前位置:首页 > PHP教程 > php应用 > 列表

PHP如何获取不带命名空间的类名

发布:smiling 来源: PHP粉丝网  添加日期:2022-05-20 12:05:45 浏览: 评论:0 

方法很多,列出几个,以供参考。

Laravel 源码里扒出来的 class_basename 辅助函数

basename(str_replace('\\', '/', $class));

substr 实现

substr(strrchr($class, "\\"), 1);

// or

substr($class, strrpos($class, '\\') + 1);

explode 实现

array_pop(explode('\\', $class));

ReflectionClass 实现

(new \ReflectionClass($class))->getShortName();

其中,ReflectionClass 是最快最保险的方案,但此类必须实际存在,不存在则会抛出 ReflectionException: Class \Foo\Bar does not exist。

Tags: PHP获取类名

分享到: