今天遇到一個問題:在做「搜尋」功能時,輸入查詢條件後查詢不了。
我做的是首頁顯示資料表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 搜尋查詢功能詳細介紹和實例程式碼的內容,更多相關內容請關注PHP中文網(www.php.cn)!