TP多条件查询实例

where条件查询,时间范围查询

$condition = [
     ['type', 'IN', '1,2,3'],
     ['allocate_id', '=', 0],
     ['member_id', '=', 0],
     ['card_code', '>=', $start_code],
     ['card_code', '<=', $end_code],
];

 

$condition = [
    ['member_id', '=', $member_id]
];
if($type) {
    $condition[] = ['type', '=', $type];
}
if ($start_time) {
    $condition[] = ['active_time', '>=', $start_time];
}
if ($end_time) {
    $condition[] = ['active_time', '<', $end_time];
}
$list = $this->where($condition)->field($field)->select();

posted @ 2020-01-07 14:29  在斑马线上散布  阅读(364)  评论(0编辑  收藏  举报
夫人不言,言必有中。这是高级臣僚的一种可贵品质,言辞精炼,直抵要害。