Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
There is not.
This is done simply.
When you go to the page, you update the time of the last update in the users table. Something like this:
$sql='UPDATE users SET last_update='.time().' where id_user='.Yii::app()->user->id;
Yii::app()->db->createCommand($sql)->execute();
$users=Users::model()->findAll([
'condition'=>'t.last_update > :time',
'params'=>[':time'=>time()-(60*60*15)], // 15 минут
]);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question