How to get count of items which are created today in yii2?
问题 Sample data in my collection : created_at : 2018-04-29 05:25:28.000Z I'm using TimestampBehavior , 'timestamp' => [ 'class' => TimestampBehavior::className(), 'attributes' => [ ActiveRecord::EVENT_BEFORE_INSERT => 'created_at', ActiveRecord::EVENT_BEFORE_UPDATE => 'updated_at', ], 'value' => function() { $now = new \DateTime('NOW'); return new \MongoDB\BSON\UTCDateTime(strtotime($now->format("Y-m-d H:i:s"))*1000); }, ], This is my count function : public function count_users () { $cnt = Users