Heim  >  Artikel  >  Backend-Entwicklung  >  php多条件查询

php多条件查询

WBOY
WBOYOriginal
2016-06-23 13:26:141209Durchsuche

 

$sql="select *from think_kaoqin WHERE(1=1)";      if(!empty($uid))            {                $sql .=" and uid= ".$uid;            }             if(!empty($time1) && empty($time2))            {                                   $sql .=" and riqi >= '".$time1."'";            }            if (!empty($time2) &&empty($time1)) {                           $sql .=" and riqi <= '".$time2."'";            }           if (!empty($time1) && !empty($time2)) {                $sql .=" and riqi >= '".$time1."' and riqi <='".$time2."'";            }  $this->info=M('kaoqin')->query($sql);

 

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn