我知道一个包应该包含目录结构和
the best practices documentation中概述的其他约定.
我仍然不明白为什么我应该选择在库中安装库还是在Symfony2安装中“按原样”安装PSR-0兼容库.
例如,我想安装Guzzle Http Client库.目前我有两个版本可供选择:
> library itself
>或Guzzle ‘bundle’.
我可以看到捆绑包使用了库,但由于我是Symfony2的新手,我还不能理解“大局”.有人可以帮我吗?
最佳答案 使用bundle而不是库将允许您从ServiceContainer访问库.
这将允许您轻松调用库;例如在控制器中:
<?php
public function someAction(){
// ...
$guzzle = $this->get('guzzle.service_builder');
// ...
}
退房http://symfony.com/doc/current/book/service_container.html