很抱歉,如果这是一个副本。是否存在像::class
这样的本机PHP函数,但是对于字符串变量或常量?即从字符串构建使用活动命名空间和use
别名的FQCN。 E.g:
namespace test;
use foo\bar;
echo fqcn_from_a_string("zip"); // should print 'test\zip'
echo fqcn_from_a_string("bar"); // should print 'foo\bar'
echo fqcn_from_a_string("\yap"); // should print 'yap'