如何比较 Yii 2 ActiveRecord 中的日期和时间?
How to compare dates and times in Yii 2 ActiveRecord?
我很困惑,如何在 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() 调用?
您可以使用 php 执行此操作:
public static someMethod(){
self::updateAll(['status' => SomeModel::STATUS_ACTIVE], [
'AND',
['status' => SomeModel::STATUS_ONLINE],
['<', 'last_seen_timestamp_no_timezone', date('Y-m-d H:i:s', strtotime('-15 minutes'))]
]);
}
我很困惑,如何在 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() 调用?
您可以使用 php 执行此操作:
public static someMethod(){
self::updateAll(['status' => SomeModel::STATUS_ACTIVE], [
'AND',
['status' => SomeModel::STATUS_ONLINE],
['<', 'last_seen_timestamp_no_timezone', date('Y-m-d H:i:s', strtotime('-15 minutes'))]
]);
}