在Custom Class上的构造函数内初始化Code​​igniter实用程序

时间:2013-04-20 10:55:20

标签: php codeigniter

我已经做了几个月的CI并且达到了我想在CI上创建自己的库类的地步。现在,我的问题是,我似乎无法获得CI的实例,以便我利用其原生资源。我做到了。

class MyClass{
     protected $instance;
     public function __construct()
     {
        $this->$instance = &get_instance(); <-- this is what i did (theoretically speaking)

     }
  }

我尝试过的其他事情

class MyClass{

     protected $instance = &get_instance(); <-- reports a syntax error on Apatana

     public function __construct()
     {


     }
  }

你们中的任何人都可以让我更好地了解如何获取实例(在源代码上初始化一点)&lt; - 据说,我想让实例只使用一次并使用我的 Class

全部都是

1 个答案:

答案 0 :(得分:1)

you can use it in this way
in constructor
$this->ci = & get_instance();

then you can use it like 
$this->ci->load->model();