当前位置:首页 > CMS教程 > 其它CMS > 列表

CI框架附属类用法分析

发布:smiling 来源: PHP粉丝网  添加日期:2021-11-03 14:20:58 浏览: 评论:0 

本文实例讲述了CI框架附属类用法。分享给大家供大家参考,具体如下:

有些时候,你可能想在你的控制器之外新建一些类,但同时又希望 这些类还能访问 CodeIgniter 的资源

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

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

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

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

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

$CI =& get_instance();

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

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

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

例如:

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

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

Tags: CI框架 CI附属类

分享到: