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.
我知道为我的自定义服务使用自定义配置值,但是如果我有希望在任何地方使用的全局配置值怎么办?定义可以节省我的时间,但我确信 DI 容器有一个更优雅的方法。
我需要一些全局键,那么,如何在 Symfony 2 中定义它们?
在parameters.ini中定义它们,然后就可以了$container->getParameter('blah');
$container->getParameter('blah');
我认为您正在寻找容器。此页面显示如何定义服务,但您可以对参数执行相同的操作。