003 - CI在你的類庫中使用 CodeIgniter 資源

來源:互聯網
上載者:User

在你的類庫中使用 get_instance() 函數來訪問 CodeIgniter 的原生資源,這個函數返回 CodeIgniter 超級對象。

通常情況下,在你的控制器方法中你會使用 $this 來調用所有可用的 CodeIgniter 方法:


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

但是 $this 只能在你的控制器、模型或視圖中直接使用,如果你想在你自己的類中使用 CodeIgniter 類,你可以像下面這樣做:

首先,將 CodeIgniter 對象賦值給一個變數:

$CI =& get_instance();

一旦你把 CodeIgniter 對象賦值給一個變數之後,你就可以使用這個變數來 代替 $this

$CI =& get_instance();$CI->load->helper('url');$CI->load->library('session');$CI->config->item('base_url');// etc.


註解:

你會看到上面的 get_instance() 函數通過引用來傳遞:


$CI =& get_instance();

這是非常重要的,引用賦值允許你使用原始的 CodeIgniter 對象,而不是建立一個副本。


然類庫是一個類,那麼我們最好充分的使用 OOP 原則,所以,為了讓類中的所有方法都能使用 CodeIgniter 超級對象,建議將其賦值給一個屬性:

class Example_library {    protected $CI;    // We'll use a constructor, as you can't directly call a function    // from a property definition.    public function __construct()    {        // Assign the CodeIgniter super-object        $this->CI =& get_instance();    }    public function foo()    {        $this->CI->load->helper('url');        redirect();    }    public function bar()    {        echo $this->CI->config->item('base_url');    }}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.