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.
我需要在服务 symfony2 应用程序中翻译一些文本。我听说通过容器不是最佳做法。有什么简单的例子吗?谢谢
实际上,将容器作为服务参数传递是一种不好的做法,相反,您应该像这样注入翻译器:
my.service: class: My\AppBundle\MyService arguments: ["@translator"]