我是simfony2的新手,很抱歉新手问题。
当我尝试使用某些类时,例如DirectoryIterator
orDOMDocument
我收到以下异常:
PHP Fatal error: Class 'My\TestBundle\Command\DirectoryIterator' not found in /var/www/simfony2/src/My/TestBundle/Command/TestCommand.php on line 214
如果尝试在 simfony2 环境之外运行相同的代码,它的代码运行良好,phpinfo()
显示 PHP Version => 5.3.10-1ubuntu3.4
并且包含路径是默认加上添加的 ZF2。
同样,我知道这可能是一些配置问题,因为它在我的包中搜索类而不是使用内置的 php 类,但我不知道如何解决这个问题。
编辑:这是我要执行的代码的副本:
protected function execute(InputInterface $input, OutputInterface $output) {
$classes=get_declared_classes();
print_r($classes);
$d= new DirectoryIterator("/");
}
当我运行命令时,我可以看到类
...
[73] => DirectoryIterator
...
但我不能使用它