ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
#### 双字段模糊查询 用例: ![](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; } } ~~~