gpt4 book ai didi

php - 在 CodeIgniter、SQL 中调用 bool 值的成员函数 result()

转载 作者:行者123 更新时间:2023-12-05 05:18:40 25 4
gpt4 key购买 nike

我试图根据搜索关键字查看 $data['results'] 中有哪些数据,但每次都会出现上述 fatal error ,有人可以帮助我吗?我的 Controller

public function execute_search()
{
$search_term = $this->input->post('search');
$data['results'] = $this->UserModel->get_results($search_term);
print_r($results); die;
//$this->load->view('search_result',$data);
}

我的模型:

public function get_results($search_term)
{
//var_dump($search_term);die;
$this->db->select('*');
$this->db->from('Competitor_Products');
$this->db->where('CProduct_Article_Number', $search_term);
return $this->db->get()->result();
}

最佳答案

您将结果存储在 $data['results'] 中并打印 $results

那么它是如何工作的呢?如下打印$data['results']

 print_r($data['results']); die;

您可以在 View 中使用$results

关于php - 在 CodeIgniter、SQL 中调用 bool 值的成员函数 result(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47392812/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com