當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CI_Loader::CI_Loader方法代碼示例

本文整理匯總了PHP中CI_Loader::CI_Loader方法的典型用法代碼示例。如果您正苦於以下問題:PHP CI_Loader::CI_Loader方法的具體用法?PHP CI_Loader::CI_Loader怎麽用?PHP CI_Loader::CI_Loader使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CI_Loader的用法示例。


在下文中一共展示了CI_Loader::CI_Loader方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1:

 function CI_Base()
 {
     global $OBJ;
     parent::CI_Loader();
     $this->load =& $this;
     $OBJ = $this->load;
 }
開發者ID:Calico90,項目名稱:codeigniter-version-scan,代碼行數:7,代碼來源:Base4.php

示例2:

 function CI_Base()
 {
     // This allows syntax like $this->load->foo() to work
     parent::CI_Loader();
     $this->load =& $this;
     // This allows resources used within controller constructors to work
     global $OBJ;
     $OBJ = $this->load;
     // Do NOT use a reference.
 }
開發者ID:laiello,項目名稱:php-personal-budget,代碼行數:10,代碼來源:Base4.php

示例3: array

 /**
  * Constructor
  *
  * Sets the path to the view files and gets the initial output buffering level
  *
  * @access    public
  */
 function MY_Loader()
 {
     // {{{ Matchbox
     $this->_matchbox =& load_class('Matchbox');
     $this->_ci_tables = array();
     parent::CI_Loader();
     // }}}
     $this->_ci_is_php5 = floor(phpversion()) >= 5 ? TRUE : FALSE;
     $this->_ci_view_path = APPPATH . 'views/';
     $this->_ci_ob_level = ob_get_level();
     log_message('debug', "Loader Class Initialized");
 }
開發者ID:GothamGazette,項目名稱:Maze,代碼行數:19,代碼來源:MY_Loader.php

示例4:

 function MY_Loader()
 {
     parent::CI_Loader();
 }
開發者ID:Kelgendy,項目名稱:3bont,代碼行數:4,代碼來源:MY_Loader.php

示例5: dirname

 function __construct()
 {
     parent::CI_Loader();
     /* change view folder */
     $this->_ci_view_path = dirname(dirname(dirname(dirname(__FILE__)))) . "/web-content/themes/";
 }
開發者ID:Rundiz,項目名稱:vee-manga-reader,代碼行數:6,代碼來源:MY_Loader.php

示例6:

 function CI_Loader()
 {
     parent::CI_Loader();
     log_message('debug', "MY_Loader Class Initialized");
 }
開發者ID:NeroJz,項目名稱:ekv,代碼行數:5,代碼來源:MY_Loader.php


注:本文中的CI_Loader::CI_Loader方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。