如何在PHP模板上获取代表当前用户的实体?

时间:2013-07-31 08:45:17

标签: php symfony

正如在这个问题上回答How do I get the entity that represents the current user in Symfony2?这说明了如何在控制器上执行此操作,但是如何在php模板上获取实际用户实体而无需将参数发送到模板?

我得到的是:

$ APP->的getSession() - > getUsername();

但是这只是给了一个带有用户名的原始var,我想要用户实体

1 个答案:

答案 0 :(得分:4)

您可以在php模板中使用$app->getUser(),在树枝模板中使用app.user

请参阅:http://symfony.com/doc/current/book/security.html