我正在从事一个具有许多功能的大型项目。这些功能之一被定义到命名空间中。
当我想初始化一个未定义到命名空间中的类时,我的问题就开始了。这个类没有在任何命名空间中定义,只是整个项目中的一个类。
错误,
致命错误:类...未找到...
我试图包含这个文件,但没有工作。
所以我有:
namespace apps\aaa;
use apps\aaa\bbb;
use apps\cccc\ddd\eee;
class xxx
{
// I tryed to use include_once with the path of the file but doesn't work.
// and in some place into the class, I want to initialize this "unnamedspace class".
$some_var= new unnamedsapceclass();
}
那么,我应该如何使用它呢?