Browse Source

聊天记录日期时间筛选2

master
wanghongjun 7 months ago
parent
commit
8d9adc59c7
  1. 2
      app/enterprise/controller/Im.php

2
app/enterprise/controller/Im.php

@ -241,7 +241,7 @@ class Im extends BaseController
$search_date = strtotime($param['search_date']);
if ($search_date) {
$start_date = strtotime(date("Y-m-d 00:00:00", $search_date));
$end_date = strtotime(date("Y-m-d 23:59:59"));
$end_date = strtotime(date("Y-m-d 23:59:59", $search_date));
$where[] = ['create_time', '>=', $start_date];
$where[] = ['create_time', '<=', $end_date];
}

Loading…
Cancel
Save