PHP如何获取不带命名空间的类名
程序员文章站
2022-03-01 22:28:57
...
方法很多,列出几个,以供参考。
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。
更多PHP相关知识,请访问PHP教程!
以上就是PHP如何获取不带命名空间的类名的详细内容,更多请关注其它相关文章!
上一篇: PHP的防御XSS注入的终极解决方案
下一篇: PHP如何下载远程文件到指定目录