場所: application/core/student_model.php
class Student_model extends CI_Model
{
private $id;
public function __construct() {
parent::__construct();
}
public function setId($id){
$this->id = $id;
}
public function getId() {
return $this->id;
}
}
場所: application/controllers/test.php
class Test extends CI_Controller {
public function __construct()
{
parent::__construct();
$this->load->model('Student_model');
}
public function index()
{
$student = $this->student_model->setId('1234567');
echo $student->getId();
}
}
次のメッセージ/エラーが表示されます。
Message: Undefined property: Test::$student_model
Filename: controllers/test.php
Line Number: 13
この行は、メソッド setId を呼び出している場所です。
誰かが私が間違っていることを見ることができますか?