結果変数が Ajaxcont コントローラーで定義されていません。$results をモデルからコントローラーに戻す方法が正確にはわかりません。クエリによって取得されたすべての値を $results 配列に保持したいだけです。私は何を間違っていますか?
<?php
if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Ajaxcont extends CI_Controller
{
function __construct()
{
parent::__construct();
$this->load->model("ajax_model");
}
function index()
{
$search = $this->input->post('search', TRUE);
$like_search= '%' .$this->db->escape_like_str($search) . '%';
$query= $this->ajax_model->search_course($like_search);
if ($query)
{
foreach($query->result() as $row)
{
//$course_name_highlighted = str_ireplace($search, '<b>' .$search . '</b>' , $row->full_name);
$start = stripos($row-> Course_Name, $search);
$length= strlen($search);
$new_search = substr($row->Course_Name, $start, $length);
$course_name_highlighted = str_ireplace($new_search, '<b>' .$new_search . '</b>' , $row->Course_Name);
$results[]= array(
'Course_Name' => $row->Course_Name,
'FirstName' => $row->FirstName,
'LastName' => $row->LastName,
'COURSE_ID' => $row->COURSE_ID,
'course_name_highlighted' => $course_name_highlighted
);
}
}
if ( $this->input-> is_ajax_request())
{
$this->output->set_header("Cache-Control: no-cache, must-revalidate");
$this->output->set_header("Expires:Mon, 4 Apr 1994 04:44:44 GMT");
$this->output->set_header("Content-type:application/json");
echo json_encode($results);
}
else
{
$data['results'] = $results;
$this->load->view('ajax_search', $data);
}
}
}
そして Axaj_model コード:
<?php
Class Ajax_model extends CI_Model
{
function __construct()
{
parent::__construct();
}
function search_course($like_search)
{
$this->db->select('FirstName, LastName, COURSE_ID, Course_Name, Semester,Time,Book, SECTION_ID');
$this->db->from('Section');
$this->db->join('faculty', 'faculty.FACULTY_ID = section.FACULTY_ID');
$this->db->like('Course_Name', $like_search);
$this->db->order_by('Course_Name');
$query = $this -> db->get();
//If it is all correct
$results=array();
if($query -> num_rows() > 0 )
{
return $query->result();
}
else
{
return false;
}
}
}