在Zend_Framework中自动加载Symfony类

时间:2010-09-04 16:21:40

标签: zend-framework dependency-injection symfony1 autoload zend-autoloader

如何基于Zend Framework在应用程序中自动加载Symfony类?我可以将某种Symfony自动加载器推送到Zend的Autoloader吗?

我需要使用一些组件,如输出escaper或依赖注入类。

1 个答案:

答案 0 :(得分:1)

Zend的自动加载器可以接受多个自动加载器:

$autoloader->pushAutoloader(array('ezcBase', 'autoload'), 'ezc');

以上是straight from the manual,并展示了如何将ezComponents(现在的Zeta Components)的自动加载器作为附加加载器。你可以尝试通过提供Sfs Autoloader来实现这条路线。