标签: php symfony-1.4
可能重复: How to catch an id from sfUser?
如何在symfony(1.4.17)中获取当前登录用户的ID?
我尝试过让用户保护用户,但没有工作。我只想在变量中获得当前用户ID。
答案 0 :(得分:1)
只需在登录过程中设置id属性
$this->getUser()->setAttribute("id", <your id>);
然后检索它
$this->getUser()->getAttribute("id");