欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

fleaphp下不确定的多条件查询的巧妙解决方法

程序员文章站 2022-04-11 18:42:09
问题:例如,实现如下 $data = array( 'id' => $_post['id1'], 'name' => $_post['name1'] ); $p...
问题:例如,实现如下
$data = array(
'id' => $_post['id1'],
'name' => $_post['name1']
);
$posts = $this->_modelstudent->findall($data);
页面上有 id name 的文本框 可输入id查询 也可输入name查询 也可同时输入查询 ;

解决:写循环做判断
例子如下:
$conditions = null;
$fields = array('id', 'name', 'sex', 'phone');
foreach($fields as $each) {
if(!empty($_post[$each])) {
if($conditions) {
$conditions .= " and {$each}={$_post[$each]}";
} else {
$conditions .= "{$each}={$_post[$each]}";
}
}
}