如何获取包含模型对象的变量

时间:2015-02-02 10:51:40

标签: php codeigniter

我制作了一个模型,但我不知道如何使用CI主控制器进行实例化。我知道有一种方法可以在配置中使用自动加载或扩展它,但我想这样。

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Authentification {
function __construct() {
    $CI =& get_instance();
    $CI->load->model('authentification_model');
    var_dump($this->authentification_model);
}
public function test() {    
}

}

0 个答案:

没有答案