我在命名空间framework \ ext \ Library下有一个类,并使用Doctrine \ Common \ Annotations \ AnnotationReader,但是当我尝试创建一个AnnotationReader实例时,它会抛出一个未找到类的异常。
namespace framework\ext\Library;
use Doctrine\Common\Annotations\AnnotationReader;
class CommonFunction {
public function getAnno(){
...
$annotationReader = new AnnotationReader();
...
}
}
错误抛出
Fatal error: Class 'Doctrine\Common\Annotations\AnnotationReader' not found
我尝试删除CommonFunction
的命名空间,但它运行正常。如何解决?