本文整理汇总了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");
}