0

0

CI框架源码阅读---------系统初始化文件_PHP教程

php中文网

php中文网

发布时间:2016-07-14 10:08:38

|

1243人浏览过

|

来源于php中文网

原创

CodeIgniter.php 执行流程分析

这是系统初始化文件
1.定义CI版本
2.定义CI分支  这里我认为CI有两个分支一个是Core ,另一个是Reactor。但是这里具体的作用我还没弄白。
3.加载全局函数system/core/common.php
4.加载框架常量  如果定义了ENVIRONMENT常量并且在APPPATH/cofig/下面有以ENVIRONMENT常量为名字的文件夹并且里面存在constants.php则加载这个constants.php
如果没有则直接加载APPPATH/cofig/下面的constants.php
5.定义一个自定义的错误处理函数,让我们用来记录php错误日志
6.如果当前php版本>5.3  则关闭魔术转义
7.设置类前缀(在index.php中可以通过$assign_to_config[]来自定义配置项)
一般的类前缀会在config文件中被设置,这个类前缀可以让CI知道application下的libraries文件夹下哪些的类继承了CI核心类的类,因为CI容许入口文件index.php中覆盖配置文件的配置项,所以程序开始执行之前我们需要知道类前缀是否被覆盖,如果被覆盖了,我们将在所有类加载之前设置它的值。
 
8.设置脚本执行时间
9.脚本开始执行
加载并实例化基准测试类(类文件:core/Benchmark.php)
记下total_execution_time_start 、loading_time:_base_classes_start这两个时间点
10、如果可以加载并实例化钩子类 (类文件core/Hooks.php)我们就加载并实例化
这需要在钩子是在 application/config/config.php 中开启并在 application/config/hooks.php文件中定义当前的钩子
详情:http://codeigniter.org.cn/user_guide/general/hooks.html
11.加载并实例化配置类
如果我们在index.php中手动的通过$assign_to_config[]来进行配置
12、加载并实例化UTF-8类,这里的顺序是非常重要的UTF-8类必须跟在配置类的后面加载
13、加载并实例化URI类
14、加载并实例化router类,设置router
15、加载并实例化输出类
16、判断有没有缓存文件如果有输出
17、为了防止xss和csrf攻击加载并实例化security类
18、加载并实例化输入类
19、加载并实例化语言包
20、加载并实例化控制器类
get_instance() 这个函数用于实例化控制器类
21、判断是否存在子控制器类 如果存在加载
22、通过控制器去加载本地应用程序下请求的控制器
23、记录loading_time:_base_classes_end时间点
24、进行安全监测 此处有说明:所有的功能不管是应用程序控制器还是加载类可以通过URI调用,控制器function不能用下划线开始
先通过控制器获得加载的类和方法
当加载的类或者方法又或者方法不在CI_Controller这个类中的时候,显示404页面
25、如果设置了pre_controller这个钩子则调用
26、记录请求控制器的时间并且实例化请求的类
27、如果设置了post_controller_constructor这个钩子则调用
28、调用请求的方法
首先监测请求的类中是否有_remap方法,如果有调用
如果没有再判断请求的类中是否有请求的方法如果没有显示404页面
最后调用请求的方法
29、记录控制器执行结束的时间
30、如果设置了post_controller这个钩子则调用
31、将最终的输出发送到浏览器
32、如果设置了post_system钩子则调用
33、判断CI_DB类是否存在还有$CI->db是否设置了值如果为真则关闭数据库连接。
 
下面是文件源码:
[php]  
/** 
 * CodeIgniter 
 * 
 * An open source application development framework for PHP 5.1.6 or newer 
 * 
 * @package     CodeIgniter 
 * @author      ExpressionEngine Dev Team 
 * @copyright   Copyright (c) 2008 - 2011, EllisLab, Inc. 
 * @license     http://codeigniter.com/user_guide/license.html 
 * @link        http://codeigniter.com 
 * @since       Version 1.0 
 * @filesource 
 */  
  
// ------------------------------------------------------------------------  
  
/** 
 * System Initialization File 
 * 
 * Loads the base classes and executes 执行 the request. 
 * 
 * @package     CodeIgniter 
 * @subpackage  codeigniter 
 * @category    Front-controller 
 * @author      ExpressionEngine Dev Team 
 * @link        http://codeigniter.com/user_guide/ 
 */  
  
/** 
 * CodeIgniter Version 
 * 
 * @var string 
 * 
 */  
    define('CI_VERSION', '2.1.3');  
  
/** 
 * CodeIgniter Branch 分支 (Core = TRUE, Reactor 反应器 = FALSE) 
 * 
 * @var boolean 
 * 
 */  
    define('CI_CORE', FALSE);  
  
/* 
 * ------------------------------------------------------ 
 *  Load the global functions 
 * ------------------------------------------------------ 
 */  
    require(BASEPATH.'core/Common.php');  
/* 
 * ------------------------------------------------------ 
 *  Load the framework constants 
 * ------------------------------------------------------ 
 */  
    if (defined('ENVIRONMENT') AND file_exists(APPPATH.'config/'.ENVIRONMENT.'/constants.php'))  
    {  
        require(APPPATH.'config/'.ENVIRONMENT.'/constants.php');  
    }  
    else  
    {  
        require(APPPATH.'config/constants.php');  
    }  
  
/* 
 * ------------------------------------------------------ 
 *  Define a custom 自定义 error handler 处理器 so we can log PHP errors 
 * ------------------------------------------------------ 
 */  
    set_error_handler('_exception_handler');  
  
    if ( ! is_php('5.3'))  
    {  
        @set_magic_quotes_runtime(0); // Kill magic quotes 关闭魔术转义  
    }  
  
/* 
 * ------------------------------------------------------ 
 *  Set the subclass_prefix 类前缀 
 * ------------------------------------------------------ 
 * 
 * Normally the "subclass_prefix" is set in the config file. 
 * The subclass prefix allows CI to know if a core class is 
 * being extended via 通过 a library in the local application 
 * "libraries" folder. Since 因为 CI allows config items to be 
 * overriden via data set in the main index. php file, 
 * before proceeding 开始 、程序 we need to know if a subclass_prefix 
 * override exists. 存在  If so, we will set this value now, 
 * before any 任何 classes are loaded 
 * Note: Since the config file data is cached it doesn't 
 * hurt 伤害,使受伤 to load it here. 
 * 注意:因为配置文件的数据已经被缓存,所以它加载到这里也不会有伤害。 
 */  
    if (isset($assign_to_config['subclass_prefix']) AND $assign_to_config['subclass_prefix'] != '')  
    {  
        get_config(array('subclass_prefix' => $assign_to_config['subclass_prefix']));  
    }  
  
/* 
 * ------------------------------------------------------ 
 *  Set a liberal 自由主义者 script execution 执行 time limit 
 * ------------------------------------------------------ 
 */  
    if (function_exists("set_time_limit") == TRUE AND @ini_get("safe_mode") == 0)  
    {  
        @set_time_limit(300);  
    }  
  
/* 
 * ------------------------------------------------------ 
 *  Start the timer... tick tock tick tock... 
 * ------------------------------------------------------ 
 */  
    $BM =& load_class('Benchmark', 'core');  
    $BM->mark('total_execution_time_start');  
    $BM->mark('loading_time:_base_classes_start');  
  
/* 
 * ------------------------------------------------------ 
 *  Instantiate the hooks class 
 * ------------------------------------------------------ 
 */  
    $EXT =& load_class('Hooks', 'core');  
  
/* 
 * ------------------------------------------------------ 
 *  Is there a "pre_system" hook? 
 * ------------------------------------------------------ 
 */  
    $EXT->_call_hook('pre_system');  
  
/* 
 * ------------------------------------------------------ 
 *  Instantiate the config class 
 * ------------------------------------------------------ 
 */  
    $CFG =& load_class('Config', 'core');  
  
    // Do we have any manually 手动的 set config items in the index.php file?  
    if (isset($assign_to_config))  
    {  
        $CFG->_assign_to_config($assign_to_config);  
    }  
  
/* 
 * ------------------------------------------------------ 
 *  Instantiate the UTF-8 class 
 * ------------------------------------------------------ 
 * 
 * Note: Order 命令顺序 here is rather 宁可,当然 important as the UTF-8 
 * class needs to be used very early 早期的,提早 on, but it cannot 
 * properly 适当的、正确的 determine 决定 if UTf-8 can be supported until 在。。。以前 
 * after the Config class is instantiated. 
 * 
 */  
  
    $UNI =& load_class('Utf8', 'core');  
  
/* 
 * ------------------------------------------------------ 
 *  Instantiate the URI class 
 * ------------------------------------------------------ 
 */  
    $URI =& load_class('URI', 'core');  
  
/* 
 * ------------------------------------------------------ 
 *  Instantiate the routing class and set the routing 
 * ------------------------------------------------------ 
 */  
    $RTR =& load_class('Router', 'core');  
    $RTR->_set_routing();  
  
    // Set any routing overrides that may exist in the main index file  
    if (isset($routing))  
    {  
        $RTR->_set_overrides($routing);  
    }  
  
/* 
 * ------------------------------------------------------ 
 *  Instantiate the output class 
 * ------------------------------------------------------ 
 */  
    $OUT =& load_class('Output', 'core');  
  
/* 
 * ------------------------------------------------------ 
 *  Is there a valid 有效的 cache file?  If so, we're done... 
 * ------------------------------------------------------ 
 */  
    if ($EXT->_call_hook('cache_override') === FALSE)  
    {  
        if ($OUT->_display_cache($CFG, $URI) == TRUE)  
        {  
            exit;  
        }  
    }  
  
/* 
 * ----------------------------------------------------- 
 * Load the security 安全 class for xss and csrf support 
 * ----------------------------------------------------- 
 */  
    $SEC =& load_class('Security', 'core');  
  
/* 
 * ------------------------------------------------------ 
 *  Load the Input class and sanitize 使。。。无害 globals 
 * ------------------------------------------------------ 
 */  
    $IN =& load_class('Input', 'core');  
  
/* 
 * ------------------------------------------------------ 
 *  Load the Language class 
 * ------------------------------------------------------ 
 */  
    $LANG =& load_class('Lang', 'core');  
  
/* 
 * ------------------------------------------------------ 
 *  Load the app controller and local controller 
 * ------------------------------------------------------ 
 * 
 */  
    // Load the base controller class  
    require BASEPATH.'core/Controller.php';  
  
    function &get_instance()  
    {  
        return CI_Controller::get_instance();  
    }  
  
  
    if (file_exists(APPPATH.'core/'.$CFG->config['subclass_prefix'].'Controller.php'))  
    {  
        require APPPATH.'core/'.$CFG->config['subclass_prefix'].'Controller.php';  
    }  
  
    // Load the local application controller  
    // Note: The Router class automatically 不经思索的、自动的 validates 确认 the controller   
    // path using the router->_validate_request().  
    // If this include fails it means 手段、意思是 that 因为、那么 the default controller in   
    // the Routes.php fi.le is not resolving 解析 to something 非常 valid 有效地  
    if ( ! file_exists(APPPATH.'controllers/'.$RTR->fetch_directory().$RTR->fetch_class().'.php'))  
    {  
        show_error('Unable to load your default controller. Please make sure the controller specified in your Routes.php file is valid.');  
    }  
  
    include(APPPATH.'controllers/'.$RTR->fetch_directory().$RTR->fetch_class().'.php');  
  
    // Set a mark point for benchmarking 管理标记  
    $BM->mark('loading_time:_base_classes_end');  
  
/* 
 * ------------------------------------------------------ 
 *  Security check 
 * ------------------------------------------------------ 
 * 
 *  None of the functions in the app controller or the 
 *  loader class can be called via the URI, nor 也不是、也没有 can 
 *  controller functions that begin with an underscore 下划线、强调、底线 
 *  所有的功能不管是应用程序控制器还是加载类可以通过URI调用,控制器function不能用下划线开始 
 */  
    $class  = $RTR->fetch_class();  
    $method = $RTR->fetch_method();  
  
    if ( ! class_exists($class)  
        OR strncmp($method, '_', 1) == 0  
        OR in_array(strtolower($method), array_map('strtolower', get_class_methods('CI_Controller')))  
        )  
    {  
        if ( ! emptyempty($RTR->routes['404_override']))  
        {  
            $x = explode('/', $RTR->routes['404_override']);  
            $class = $x[0];  
            $method = (isset($x[1]) ? $x[1] : 'index');  
            if ( ! class_exists($class))  
            {  
                if ( ! file_exists(APPPATH.'controllers/'.$class.'.php'))  
                {  
                    show_404("{$class}/{$method}");  
                }  
  
                include_once(APPPATH.'controllers/'.$class.'.php');  
            }  
        }  
        else  
        {  
            show_404("{$class}/{$method}");  
        }  
    }  
  
/* 
 * ------------------------------------------------------ 
 *  Is there a "pre_controller" hook? 
 * ------------------------------------------------------ 
 */  
    $EXT->_call_hook('pre_controller');  
  
/* 
 * ------------------------------------------------------ 
 *  Instantiate the requested controller 
 * ------------------------------------------------------ 
 */  
    // Mark a start point so we can benchmark the controller  
    $BM->mark('controller_execution_time_( '.$class.' / '.$method.' )_start');  
  
    $CI = new $class();  
  
/* 
 * ------------------------------------------------------ 
 *  Is there a "post_controller_constructor" hook? 
 * ------------------------------------------------------ 
 */  
    $EXT->_call_hook('post_controller_constructor');  
  
/* 
 * ------------------------------------------------------ 
 *  Call the requested method 
 * ------------------------------------------------------ 
 */  
    // Is there a "remap" 重测图、再交换 function? If so, we call it instead 更换、代替  
    if (method_exists($CI, '_remap'))  
    {  
        $CI->_remap($method, array_slice($URI->rsegments, 2));  
    }  
    else  
    {  
        // is_callable() returns TRUE on some versions of PHP 5 for private and protected  
        // methods, so we'll use this workaround 变通方案 for consistent behavior 一致的行为  
        if ( ! in_array(strtolower($method), array_map('strtolower', get_class_methods($CI))))  
        {  
            // Check and see if we are using a 404 override and use it.  
            if ( ! emptyempty($RTR->routes['404_override']))  
            {  
                $x = explode('/', $RTR->routes['404_override']);  
                $class = $x[0];  
                $method = (isset($x[1]) ? $x[1] : 'index');  
                if ( ! class_exists($class))  
                {  
                    if ( ! file_exists(APPPATH.'controllers/'.$class.'.php'))  
                    {  
                        show_404("{$class}/{$method}");  
                    }  
  
                    include_once(APPPATH.'controllers/'.$class.'.php');  
                    unset($CI);  
                    $CI = new $class();  
                }  
            }  
            else  
            {  
                show_404("{$class}/{$method}");  
            }  
        }  
  
        // Call the requested method.  
        // Any URI segments 片段 present 礼物、现在、目前 (besides 除了。。。之外 the class/function)   
        // will be passed to the method for convenience 便利、方便  
        call_user_func_array(array(&$CI, $method), array_slice($URI->rsegments, 2));  
    }  
  
  
    // Mark a benchmark end point  
    $BM->mark('controller_execution_time_( '.$class.' / '.$method.' )_end');  
  
/* 
 * ------------------------------------------------------ 
 *  Is there a "post_controller" hook? 
 * ------------------------------------------------------ 
 */  
    $EXT->_call_hook('post_controller');  
  
/* 
 * ------------------------------------------------------ 
 *  Send the final rendered 提出、已渲染的 output to the browser 
 * ------------------------------------------------------ 
 */  
    if ($EXT->_call_hook('display_override') === FALSE)  
    {  
        $OUT->_display();  
    }  
  
/* 
 * ------------------------------------------------------ 
 *  Is there a "post_system" hook? 
 * ------------------------------------------------------ 
 */  www.2cto.com
    $EXT->_call_hook('post_system');  
  
/* 
 * ------------------------------------------------------ 
 *  Close the DB connection if one exists 
 * ------------------------------------------------------ 
 */  
    if (class_exists('CI_DB') AND isset($CI->db))  
    {  
        $CI->db->close();  
    }  
  
  
/* End of file CodeIgniter.php */  
/* Location: ./system/core/CodeIgniter.php */  
 

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/477757.htmlTechArticleCodeIgniter.php 执行流程分析 这是系统初始化文件 1.定义CI版本 2.定义CI分支 这里我认为CI有两个分支一个是Core ,另一个是Reactor。但是这里具...

相关文章

PHP速学教程(入门到精通)
PHP速学教程(入门到精通)

PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载

本站声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热门AI工具

更多
DeepSeek
DeepSeek

幻方量化公司旗下的开源大模型平台

豆包大模型
豆包大模型

字节跳动自主研发的一系列大型语言模型

通义千问
通义千问

阿里巴巴推出的全能AI助手

腾讯元宝
腾讯元宝

腾讯混元平台推出的AI助手

文心一言
文心一言

文心一言是百度开发的AI聊天机器人,通过对话可以生成各种形式的内容。

讯飞写作
讯飞写作

基于讯飞星火大模型的AI写作工具,可以快速生成新闻稿件、品宣文案、工作总结、心得体会等各种文文稿

即梦AI
即梦AI

一站式AI创作平台,免费AI图片和视频生成。

ChatGPT
ChatGPT

最最强大的AI聊天机器人程序,ChatGPT不单是聊天机器人,还能进行撰写邮件、视频脚本、文案、翻译、代码等任务。

相关专题

更多
C# ASP.NET Core微服务架构与API网关实践
C# ASP.NET Core微服务架构与API网关实践

本专题围绕 C# 在现代后端架构中的微服务实践展开,系统讲解基于 ASP.NET Core 构建可扩展服务体系的核心方法。内容涵盖服务拆分策略、RESTful API 设计、服务间通信、API 网关统一入口管理以及服务治理机制。通过真实项目案例,帮助开发者掌握构建高可用微服务系统的关键技术,提高系统的可扩展性与维护效率。

76

2026.03.11

Go高并发任务调度与Goroutine池化实践
Go高并发任务调度与Goroutine池化实践

本专题围绕 Go 语言在高并发任务处理场景中的实践展开,系统讲解 Goroutine 调度模型、Channel 通信机制以及并发控制策略。内容包括任务队列设计、Goroutine 池化管理、资源限制控制以及并发任务的性能优化方法。通过实际案例演示,帮助开发者构建稳定高效的 Go 并发任务处理系统,提高系统在高负载环境下的处理能力与稳定性。

38

2026.03.10

Kotlin Android模块化架构与组件化开发实践
Kotlin Android模块化架构与组件化开发实践

本专题围绕 Kotlin 在 Android 应用开发中的架构实践展开,重点讲解模块化设计与组件化开发的实现思路。内容包括项目模块拆分策略、公共组件封装、依赖管理优化、路由通信机制以及大型项目的工程化管理方法。通过真实项目案例分析,帮助开发者构建结构清晰、易扩展且维护成本低的 Android 应用架构体系,提升团队协作效率与项目迭代速度。

83

2026.03.09

JavaScript浏览器渲染机制与前端性能优化实践
JavaScript浏览器渲染机制与前端性能优化实践

本专题围绕 JavaScript 在浏览器中的执行与渲染机制展开,系统讲解 DOM 构建、CSSOM 解析、重排与重绘原理,以及关键渲染路径优化方法。内容涵盖事件循环机制、异步任务调度、资源加载优化、代码拆分与懒加载等性能优化策略。通过真实前端项目案例,帮助开发者理解浏览器底层工作原理,并掌握提升网页加载速度与交互体验的实用技巧。

97

2026.03.06

Rust内存安全机制与所有权模型深度实践
Rust内存安全机制与所有权模型深度实践

本专题围绕 Rust 语言核心特性展开,深入讲解所有权机制、借用规则、生命周期管理以及智能指针等关键概念。通过系统级开发案例,分析内存安全保障原理与零成本抽象优势,并结合并发场景讲解 Send 与 Sync 特性实现机制。帮助开发者真正理解 Rust 的设计哲学,掌握在高性能与安全性并重场景中的工程实践能力。

223

2026.03.05

PHP高性能API设计与Laravel服务架构实践
PHP高性能API设计与Laravel服务架构实践

本专题围绕 PHP 在现代 Web 后端开发中的高性能实践展开,重点讲解基于 Laravel 框架构建可扩展 API 服务的核心方法。内容涵盖路由与中间件机制、服务容器与依赖注入、接口版本管理、缓存策略设计以及队列异步处理方案。同时结合高并发场景,深入分析性能瓶颈定位与优化思路,帮助开发者构建稳定、高效、易维护的 PHP 后端服务体系。

458

2026.03.04

AI安装教程大全
AI安装教程大全

2026最全AI工具安装教程专题:包含各版本AI绘图、AI视频、智能办公软件的本地化部署手册。全篇零基础友好,附带最新模型下载地址、一键安装脚本及常见报错修复方案。每日更新,收藏这一篇就够了,让AI安装不再报错!

169

2026.03.04

Swift iOS架构设计与MVVM模式实战
Swift iOS架构设计与MVVM模式实战

本专题聚焦 Swift 在 iOS 应用架构设计中的实践,系统讲解 MVVM 模式的核心思想、数据绑定机制、模块拆分策略以及组件化开发方法。内容涵盖网络层封装、状态管理、依赖注入与性能优化技巧。通过完整项目案例,帮助开发者构建结构清晰、可维护性强的 iOS 应用架构体系。

246

2026.03.03

C++高性能网络编程与Reactor模型实践
C++高性能网络编程与Reactor模型实践

本专题围绕 C++ 在高性能网络服务开发中的应用展开,深入讲解 Socket 编程、多路复用机制、Reactor 模型设计原理以及线程池协作策略。内容涵盖 epoll 实现机制、内存管理优化、连接管理策略与高并发场景下的性能调优方法。通过构建高并发网络服务器实战案例,帮助开发者掌握 C++ 在底层系统与网络通信领域的核心技术。

34

2026.03.03

热门下载

更多
网站特效
/
网站源码
/
网站素材
/
前端模板

精品课程

更多
相关推荐
/
热门推荐
/
最新课程
PostgreSQL 教程
PostgreSQL 教程

共48课时 | 10.5万人学习

Django 教程
Django 教程

共28课时 | 4.9万人学习

React 教程
React 教程

共58课时 | 6万人学习

关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号