我可以:
$this->getUser()->getAttribute('id');
但是如何在Symfony 1.4的模板和模型中制作它?
http://webmozarts.com/2009/07/01/why-sfcontextgetinstance-is-bad/使用什么代替getInstance?
答案 0 :(得分:3)
非常简单。
在模板中:
$sf_user->getAttribute('id');
在模特:
sfContext::getInstance()->getUser()->getAttribute('id');