0

我已经做了几个月的 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()
     {


     }
  }

你们中的任何人都可以让我更好地了解如何获取实例(在源代码上将其初始化为一个点)<-据说,我只想获取一次实例并继续使用它我的班级

4

1 回答 1

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

then you can use it like 
$this->ci->load->model();   
于 2013-04-20T11:15:07.363 回答