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.
通过使用 Yii 框架中的Blameble Behavior扩展,我想跟踪创建者和更新者。在这里我可以记录他们的身份,现在我想知道如何从中获取他们的名字。
为此,您必须在模型中添加一个关系
'creator' => array(self::BELONGS_TO, 'User', 'my_own_creator_column_name'), 'updater' => array(self::BELONGS_TO, 'User', 'my_own_updater_column_name'),
然后您可以从$model->creator和$model->updater
$model->creator
$model->updater