Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
silex 中的服务提供商是什么?这与服务有何不同?
为什么要在 silex 中使用服务提供者而不是将您的类注入到 silex 中?
服务提供者是注册服务的类。当它需要复杂的配置或在你的 pimple DIC 中暴露多个键时使用它。
如果您的服务注册是单一return new Foo()的,那么一定要在您的引导文件中进行。但如果它像Doctrine 提供者一样复杂,最好保持分开。
return new Foo()