用户
 找回密码
 入住 CI 中国社区
搜索
楼主: Hex
收起左侧

CodeIgniter 框架的简单分析

[复制链接]
发表于 2009-5-9 07:14:59 | 显示全部楼层
写的简单了一些。
发表于 2009-7-14 10:56:37 | 显示全部楼层
路过路过了
发表于 2009-7-23 14:08:54 | 显示全部楼层
每次用的$this->load->model('表名_model');  表名_model 这是自己建的吗 ??谢谢
yangbing 发表于 2009-4-21 16:00


是自己建的。。
发表于 2009-9-25 00:18:15 | 显示全部楼层
不是很明白先收藏了再说
发表于 2009-10-20 10:19:58 | 显示全部楼层
看看,瞧瞧。路过了
发表于 2009-11-25 11:18:05 | 显示全部楼层
:)
发表于 2009-12-2 11:59:24 | 显示全部楼层
我也要顶!
发表于 2010-1-19 16:01:32 | 显示全部楼层
PHP复制代码
class CI_Loader {
 
        // All these are set automatically. Don't mess with them.
        var $_ci_ob_level;
        var $_ci_view_path              = '';
        var $_ci_is_php5                = FALSE;
        var $_ci_is_instance    = FALSE; // Whether we should use $this or $CI =& get_instance()
        var $_ci_cached_vars    = array();
        var $_ci_classes                = array();
        var $_ci_loaded_files   = array();
        var $_ci_models                 = array();
        var $_ci_helpers                = array();
        var $_ci_plugins                = array();
        var $_ci_varmap                 = array('unit_test' => 'unit', 'user_agent' => 'agent');
       
 
        /**
         * Constructor
         *
         * Sets the path to the view files and gets the initial output buffering level
         *
         * @access      public
         */

        function 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");
        }
复制代码
PHP复制代码
class CI_Base extends CI_Loader {
 
        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.
        }
}
复制代码
发表于 2011-5-7 15:45:03 | 显示全部楼层
wonderful。
发表于 2011-11-29 12:00:45 | 显示全部楼层

本版积分规则