久久久久久AV无码免费看大片,亚洲一区精品人人爽人人躁,国产成人片无码免费爱线观看,亚洲AV成人无码精品网站,为什么晚上搞的时候要盖被子

php中CI框架中查詢關(guān)聯(lián)數(shù)組方法

時(shí)間:2016-10-22 11:35:55 類型:PHP
字號(hào):    


phpCI框架中多條件查詢數(shù)據(jù)時(shí),可使用以下方法:
 $array = array('id' => $id, 'title' => $title, 'content' => $content);

    $this->db->where($array);

    // Produces: WHERE id= '1' AND title = 'http://www.lhqing.com' AND content= 'www.lhqing.com'

    //或者你也可以在這個(gè)方法里包含你自己的比較運(yùn)算符:

    $array = array('id>1' => $id, 'title !=' => $title, 'content' => $content);

    $this->db->where($array);
?>