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获取类名
- 上一篇:php中的标量数据类型总结
- 下一篇:最后一页
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)