创建附属类

有些时候,你可能想在你的控制器之外新建一些类,但同时又希望这些类还能访问 CodeIgniter 的资源。下面你会看到,这其实很简单。

get_instance()

  • get_instance()

返回:Reference to your controller's instance返回类型:CI_Controller

任何在你的控制器方法中初始化的类都可以简单的通过 get_instance()函数来访问 CodeIgniter 资源。这个函数返回一个 CodeIgniter 对象。

通常来说,调用 CodeIgniter 的方法需要使用 $this

  1. $this->load->helper('url');
  2. $this->load->library('session');
  3. $this->config->item('base_url');
  4. // etc.

但是 $this 只能在你的控制器、模型或视图中使用,如果你想在你自己的类中使用 CodeIgniter 类,你可以像下面这样做:

首先,将 CodeIgniter 对象赋值给一个变量:

  1. $CI =& get_instance();

一旦你把 CodeIgniter 对象赋值给一个变量之后,你就可以使用这个变量来 代替$this

  1. $CI =& get_instance();
  2.  
  3. $CI->load->helper('url');
  4. $CI->load->library('session');
  5. $CI->config->item('base_url');
  6. // etc.

如果你在类中使用get_instance() 函数,最好的方法是将它赋值给一个属性 ,这样你就不用在每个方法里都调用 get_instance() 了。

例如:

  1. class Example {
  2.  
  3. protected $CI;
  4.  
  5. // We'll use a constructor, as you can't directly call a function
  6. // from a property definition.
  7. public function __construct()
  8. {
  9. // Assign the CodeIgniter super-object
  10. $this->CI =& get_instance();
  11. }
  12.  
  13. public function foo()
  14. {
  15. $this->CI->load->helper('url');
  16. redirect();
  17. }
  18.  
  19. public function bar()
  20. {
  21. $this->CI->config->item('base_url');
  22. }
  23. }

在上面的例子中, foo()bar() 方法在初始化 Example类之后都可以正常工作,而不需要在每个方法里都调用 get_instance() 函数。