frontend\modules\topic\models\Topic::lastCommentToUpdate PHP Method

lastCommentToUpdate() public method

最后回复更新
public lastCommentToUpdate ( string $username = '' ) : boolean
$username string
return boolean
    public function lastCommentToUpdate($username = '')
    {
        $this->setAttributes(['last_comment_username' => $username, 'last_comment_time' => time()]);
        return $this->save();
    }