当前位置:Gxlcms >
PHP教程 >
CI框架源码阅读---------Controller.php_PHP教程
CI框架源码阅读---------Controller.php_PHP教程
时间:2021-07-01 10:21:17
帮助过:7人阅读
[php]
$class)
{
$this->$var =& load_class($class);
}
// 给超级控制器加载Loader组件,这个组件是它的好助手,
// 很多时候你会经常用到$this->load->xxx()的形式加载某个东西,
// 这个load就是控制器被构造的时候就伴随存在的。
$this->load =& load_class('Loader', 'core');
// 初始化Loader组件,详细Loader.php
$this->load->initialize(); www.2cto.com
log_message('debug', "Controller Class Initialized");
}
public static function &get_instance()
{
return self::$instance;
}
}
// END Controller class
/* End of file Controller.php */
/* Location: ./system/core/Controller.php */
http://www.bkjia.com/PHPjc/477662.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/477662.htmlTechArticle[php] ?php if ( ! defined(BASEPATH)) exit(No direct script access allowed); /** * CodeIgniter * * An open source application development framework for PHP 5.1.6 or newer * * @packag...