标签: php namespaces
我刚刚在我的xampp上安装了memcache,但是我将它包含在使用命名空间的我的文件中时遇到了麻烦。
如何调用它以使其在我的命名空间下工作?我只是尝试过:
$memcache = new Memcache;
但它说:
Fatal error: Class 'Test\Memcache' not found in x
答案 0 :(得分:2)
您必须使用如下所示的完全限定名称:
$memcache = new \Memcache;