本文整理匯總了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;
}
示例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.
}
示例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");
}
示例4:
function MY_Loader()
{
parent::CI_Loader();
}
示例5: dirname
function __construct()
{
parent::CI_Loader();
/* change view folder */
$this->_ci_view_path = dirname(dirname(dirname(dirname(__FILE__)))) . "/web-content/themes/";
}
示例6:
function CI_Loader()
{
parent::CI_Loader();
log_message('debug', "MY_Loader Class Initialized");
}