这是文件夹中的文件夹modules
结构
用户->控制器->Users.php
用户->模型->Test_model.php
欢迎->控制器->Welcome.php
测试模型.php
类 Test_model 扩展 CI_Model {
function __construct() {
parent::__construct();
}
public function db_example()
{
return $this->db->get('mir_users')->result();
}
public function test(){
echo 'test model call';
}
}
在Welcome.php
class Welcome extends MX_Controller {
public function __construct()
{
parent::__construct();
$this->load->model('users/test_model');
}
public function index()
{
//this will give the output
$this->test_model->test();
//thiw will throw error
$this->test_model->db_example();
}
$this->test_model->test()
返回输出,但我会在db_example
函数中得到错误
Message: Undefined property: Test::$db
在 autoload.php
$autoload['libraries'] = array('database');
我正在使用最新版本的HMVC
Codeigniter 版本:3.1.0