我完全糊涂了,我怎么能在Yii ActiveRecord中比较日期和时间?
在我的模型中有这样的方法:
public static someMethod(){
self::updateAll(['status' => SomeModel::STATUS_ACTIVE], [
'status' => SomeModel::STATUS_ONLINE,
'last_seen_timestamp_no_timezone + 15 minutes < now()'
]);
}
如何添加条件:last_seen_timestamp_no_timezone + 15 minutes < now()
到我的updateAll()调用?
1条答案
按热度按时间rta7y2nd1#
你可以用php做到这一点: