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 的新手并使用 fosuserbundle 来管理我的用户
我如何从我的控制器访问用户对象。我需要获取 user_id 来构建一个如下所示的目录:uploads/{user_id}/...
您可以通过以下方式访问控制器中的用户对象:
$this->getUser();
所以如果你需要用户id,你可以使用getter方法:
$this->getUser()->getId();