久久久久精品网站,国产清纯白嫩大学生视频,自拍视频国产第三页在线,国产精品96乱子一级视频

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

時間:2016-10-22 11:35:55 類型:PHP
字號:    


phpCI框架中多條件查詢數(shù)據(jù)時,可使用以下方法:
 $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'

    //或者你也可以在這個方法里包含你自己的比較運算符:

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

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