PHP 搜尋查詢功能詳細介紹和執行個體代碼

來源:互聯網
上載者:User
今天遇到一個問題:在做“搜尋”功能時,輸入查詢條件後查詢不了。
我做的是首頁顯示資料表package中的內容,但是有個條件,顯示在首頁的內容還必須是 :欄位status=0,且printing=0的資料才能在首頁列表中顯示出來。
頁面上有一個“搜尋”功能,輸入條件後就會根據條件來進行查詢。
一般的搜尋的話,只要在首頁顯示列表方法index()中給一個:

$map=array();//初始化查詢條件$map=$this->_search();//調用查詢方法$total = $this->Model->where ($map)->count(); //這個主要是用來計算頁面顯示資料條數的if ($total == 0) {$_list = '';} else {$_list = $this->Model->where ($map)->limit( $post_data ['first'] . ',' . $post_data ['rows'] )->select();}

然後,就是寫一個_search():
如:

protected function _search(){$map = array ();$post_data = I ( 'post.' );if ($post_data ['packageid'] != '') {$map ['packageid'] = array ('like','%' . $post_data ['packageid'] . '%' );}return $map;}

最後,在設定的“搜尋”菜單中,調用這個搜尋方法。
但是,我做的這個,搜尋的同時,還要確保在欄位status=0,且printing=0的資料中進行搜尋。
我一直在想這個限制條件該加在什麼地方。各種嘗試和查詢後,才知道。限制條件直接加在SQL語句中就行了(如下紅色的地方)。(我自己試的時候一直在如下藍色的地方加條件,屢試屢敗!)

$map=array();$map=$this->_search();$total = $this->Model->where ($map)->where(array('status' =>0,'print_status'=>0))->count();if ($total == 0) {$_list = '';} else {$_list = $this->Model->where ($map)->where(array('status' =>0,'print_status'=>0))->limit( $post_data ['first'] . ',' . $post_data ['rows'] )->select();}

以上就是PHP 搜尋查詢功能詳細介紹和執行個體代碼的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.