php實現搜尋效果的方法:1、初始化查詢條件;2、呼叫查詢方法;3、計算頁面顯示資料條數;4、在設定的「搜尋」選單中,呼叫「protected function _search (){...}」搜尋方法即可。
本文操作環境:Windows7系統,PHP7.4版,Dell G3電腦。
php怎麼實現搜尋效果?
PHP 搜尋查詢功能實作:
今天遇到一個問題:在做「搜尋」功能時,輸入查詢條件後查詢不了。
我做的是首頁顯示資料表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怎麼實現搜尋效果的詳細內容。更多資訊請關注PHP中文網其他相關文章!