2012-12-25 89 views
0

我是Codeigniter的新手。 我有3個自動加載庫在config.phpCodeigniter中的自動加載庫

但在我的一個控制器中,我不想加載庫。這可能嗎?

+1

這是做有點棘手的事情,becouse自動加載的是全球性的功能。看看這篇文章[http://stackoverflow.com/questions/8096630/not-to-load-an-autoload-library-in-codeigniter](http://stackoverflow.com/questions/8096630/not- load-an-autoload-library-in-codeigniter) – Sasha

+0

@Sasha Thanks mate !! ..-) – raavan

回答

2

擴展庫中的CI_Controller。

事情是這樣的:

class MyLibrary extends CI_Controller { 
    var $ci; 

    function __construct() { 

     $this->ci = &get_instance(); 
     $route = $this->ci->router->fetch_class(); 

     if($route == strtolower('YourController')) return false; 
    } 
} 
0

您可以從自動加載文件中刪除庫。那麼他們將不會在框架中激活。 如果你想使用它們,你可以在構造函數中調用它們,如果你想讓它們在一個類中。如果你想在方法中使用它們,你可以在方法中加載它們。

6

如果你需要在整個應用程序中的任何庫,你可以加載它在配置文件中,它會被自動加載。但是,如果只需要特定控制器中的庫,則可以將其加載到需要它的控制器中。

Class test Extends CI_Controller{ 

    function index() 
    { 
     $this->load->library('mylibrary'); 
     $this->mylibrary->somemethod();  
    } 

} 

或者,如果你需要庫通過控制器,你可以在構造函數中加載它。

Class test Extends CI_Controller{ 

    function __construct() 
    { 
     parent::__construct(); 
     $this->load->library('mylibrary'); 
    } 

    function index(){ 
     $this->mylibrary->somemethod();  
    } 
    function test(){ 
     $this->mylibrary->someothermethod();  
    } 

} 
+0

在構造函數中加載模型真的有用嗎?從來沒有嘗試過這種方式......有趣。 – esp

+0

是的,它的工作方式與圖書館一樣 –