#### 双字段模糊查询
用例:
![](https://box.kancloud.cn/089f991f27bd89e4c3c8262d66eab8fb_254x451.png)
~~~
if(IS_POST){
$date=I('date_sample');
$keyw=I('keyw');
if($date)$map['date_sample']=$date;
if($keyw){
$where['patient_name'] = array('like', '%'.$keyw.'%');
$where['patient_tel'] = array('like','%'.$keyw.'%');
$where['_logic'] = 'or';
$map['_complex'] = $where;
}
}
~~~