是否可以从没有命名空间的文件中加载类?我在教义\模型中有一个类,如下所示:
namespace models; //This was registered in the Bootstrap.php
...
....
$x = new ClassFromRandomFile();
...
....
ClassFromRandomFile 看起来像这样:
<?php class ClassFromRandomFile {
... ...
}
现在,由于 ClassFromRandomFile 没有定义的命名空间,Doctrine classLoader 试图从模型加载它,而不是从它的真实路径,因此它没有找到它,并返回Fatal error: Doctrine\Common\ClassLoader::loadClass(): Failed opening required /path/to/doctrine/models/ClassFromRandomFile.php
......我怎样才能让那个类找到它?