0
CodeIgniter應用程序有一個搜索引擎,我想向結果添加條件。 某些代碼是在型號:如何在基於CodeIgniter的搜索引擎上添加條件
$this->db->select(users.country_symbol);
和
function getUsers($conditions=array())
{
//Check For Conditions
if (is_array($conditions) and count($conditions)>0)
$this->db->where($conditions);
}
控制器上的我:
$users = $this->search_model->getUsers(NULL)
我怎樣才能改變NULL到,對於請求的條件與$this->loggedInUser->country_symbol
具有相同country_symbol的用戶?