从字符串构建FQCN

时间:2017-04-11 16:32:34

标签: php oop

很抱歉,如果这是一个副本。是否存在像::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'

0 个答案:

没有答案