我正在使用 Symfony2。对于我的应用程序,我需要为此设置一些全局参数。
我在parameters.ini
文件中将参数定义为:
#app/config/parameters.ini
[parameters]
mailer_auth_mode="login"
user_thumbnail_path="images/user/thumbnail"
我可以使用以下代码在我的控制器中访问它:
$this->container->getParameter('user_thumbnail_path');
当我使用 FOSUserBundle 并且我有覆盖ProfileHandler
类并且在这个类中我想使用参数但我不知道如何使用时。