Home Backend Development PHP Tutorial CI framework source code reading---------system initialization file_PHP tutorial

CI framework source code reading---------system initialization file_PHP tutorial

Jul 14, 2016 am 10:08 AM
analyze initialization implement document frame process Source code system read

CodeIgniter.php execution process analysis

This is the system initialization file
1. Define CI version
2. Define CI branches Here I think CI has two branches, one is Core and the other is Reactor. But I haven't figured out the specific function here yet.
3. Load the global function system/core/common.php
4. Load framework constants If ENVIRONMENT constants are defined and there is a folder named ENVIRONMENT constants under APPPATH/cofig/ and constants.php exists in it, load this constants.php
If not, directly load constants.php under APPPATH/cofig/
5. Define a custom error handling function for us to record PHP error logs
6. If the current php version >5.3, turn off magic escaping
7. Set the class prefix (you can customize the configuration items through $assign_to_config[] in index.php)
The general class prefix will be set in the config file. This class prefix allows CI to know which classes in the libraries folder under the application inherit the CI core class, because CI allows overwriting in the entry file index.php Configuration items of the configuration file, so we need to know whether the class prefix is ​​overridden before the program starts executing. If it is overridden, we will set its value before all classes are loaded.
8. Set script execution time
9. The script starts executing
Load and instantiate the benchmark class (class file: core/Benchmark.php)
Make note of the two time points total_execution_time_start and loading_time:_base_classes_start
10. If the hook class (class file core/Hooks.php) can be loaded and instantiated, we will load and instantiate it
This requires that the hook is enabled in application/config/config.php and the current hook is defined in the application/config/hooks.php file
Details: http://codeigniter.org.cn/user_guide/general/hooks.html
11. Load and instantiate the configuration class
If we manually configure it through $assign_to_config[] in index.php
12. Load and instantiate the UTF-8 class. The order here is very important. The UTF-8 class must be loaded after the configuration class
13. Load and instantiate URI class
14. Load and instantiate the router class, and set the router
15. Load and instantiate the output class
16. Determine whether there is a cached file and if there is output
17. To prevent xss and csrf attacks, load and instantiate the security class
18. Load and instantiate the input class
19. Load and instantiate the language package
20. Load and instantiate the controller class
get_instance() This function is used to instantiate the controller class
21. Determine whether there is a sub-controller class and load it if it exists
22. Use the controller to load the controller requested under the local application
23. Record loading_time:_base_classes_end time point
24. Conduct security monitoring. Here is a description: All functions, whether application controllers or loaded classes, can be called through URI. Controller functions cannot start with an underscore
First obtain the loaded classes and methods through the controller
When the loaded class or method is not in the CI_Controller class, a 404 page is displayed
25. If the pre_controller hook is set, call
26. Record the time when the controller is requested and instantiate the requested class
27. If the post_controller_constructor hook is set, call
28. Call the request method
First check whether there is a _remap method in the requested class, and if it is called
If it is not determined whether there is a requested method in the requested class, if the 404 page is not displayed
Finally call the requested method
29. Record the time when the controller execution ends
30. If the post_controller hook is set, call
31. Send the final output to the browser
32. If the post_system hook is set, call
33. Determine whether the CI_DB class exists and whether $CI->db has a value set. If it is true, close the database connection.
The following is the file source code:
[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 下划线、强调、底线 
* All functions, whether application controllers or loaded classes, can be called through URI. Controller functions cannot start with an underscore
*/
$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 replace, replace
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 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 Execution process analysis This is the system initialization file 1. Define CI version 2. Define CI branch Here I think CI has two branches, one is Core and the other is Reactor. But here...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Huawei's Qiankun ADS3.0 intelligent driving system will be launched in August and will be launched on Xiangjie S9 for the first time Huawei's Qiankun ADS3.0 intelligent driving system will be launched in August and will be launched on Xiangjie S9 for the first time Jul 30, 2024 pm 02:17 PM

On July 29, at the roll-off ceremony of AITO Wenjie's 400,000th new car, Yu Chengdong, Huawei's Managing Director, Chairman of Terminal BG, and Chairman of Smart Car Solutions BU, attended and delivered a speech and announced that Wenjie series models will be launched this year In August, Huawei Qiankun ADS 3.0 version was launched, and it is planned to successively push upgrades from August to September. The Xiangjie S9, which will be released on August 6, will debut Huawei’s ADS3.0 intelligent driving system. With the assistance of lidar, Huawei Qiankun ADS3.0 version will greatly improve its intelligent driving capabilities, have end-to-end integrated capabilities, and adopt a new end-to-end architecture of GOD (general obstacle identification)/PDP (predictive decision-making and control) , providing the NCA function of smart driving from parking space to parking space, and upgrading CAS3.0

How to evaluate the cost-effectiveness of commercial support for Java frameworks How to evaluate the cost-effectiveness of commercial support for Java frameworks Jun 05, 2024 pm 05:25 PM

Evaluating the cost/performance of commercial support for a Java framework involves the following steps: Determine the required level of assurance and service level agreement (SLA) guarantees. The experience and expertise of the research support team. Consider additional services such as upgrades, troubleshooting, and performance optimization. Weigh business support costs against risk mitigation and increased efficiency.

Huawei will launch the Xuanji sensing system in the field of smart wearables, which can assess the user's emotional state based on heart rate Huawei will launch the Xuanji sensing system in the field of smart wearables, which can assess the user's emotional state based on heart rate Aug 29, 2024 pm 03:30 PM

Recently, Huawei announced that it will launch a new smart wearable product equipped with Xuanji sensing system in September, which is expected to be Huawei's latest smart watch. This new product will integrate advanced emotional health monitoring functions. The Xuanji Perception System provides users with a comprehensive health assessment with its six characteristics - accuracy, comprehensiveness, speed, flexibility, openness and scalability. The system uses a super-sensing module and optimizes the multi-channel optical path architecture technology, which greatly improves the monitoring accuracy of basic indicators such as heart rate, blood oxygen and respiration rate. In addition, the Xuanji Sensing System has also expanded the research on emotional states based on heart rate data. It is not limited to physiological indicators, but can also evaluate the user's emotional state and stress level. It supports the monitoring of more than 60 sports health indicators, covering cardiovascular, respiratory, neurological, endocrine,

How do the lightweight options of PHP frameworks affect application performance? How do the lightweight options of PHP frameworks affect application performance? Jun 06, 2024 am 10:53 AM

The lightweight PHP framework improves application performance through small size and low resource consumption. Its features include: small size, fast startup, low memory usage, improved response speed and throughput, and reduced resource consumption. Practical case: SlimFramework creates REST API, only 500KB, high responsiveness and high throughput

How to choose the best golang framework for different application scenarios How to choose the best golang framework for different application scenarios Jun 05, 2024 pm 04:05 PM

Choose the best Go framework based on application scenarios: consider application type, language features, performance requirements, and ecosystem. Common Go frameworks: Gin (Web application), Echo (Web service), Fiber (high throughput), gorm (ORM), fasthttp (speed). Practical case: building REST API (Fiber) and interacting with the database (gorm). Choose a framework: choose fasthttp for key performance, Gin/Echo for flexible web applications, and gorm for database interaction.

Xiaomi restricts national bank devices from using the international version of the system! Unable to enter the system after flashing Xiaomi restricts national bank devices from using the international version of the system! Unable to enter the system after flashing Jul 12, 2024 am 10:23 AM

According to news on July 9, testers of Xiaomi.EU, a well-known official version of the system, recently discovered that Xiaomi has recently taken new measures to restrict devices sold in mainland China from installing the Xiaomi international version. If a user attempts to install the international version of the system on a Chinese version of the device, the device will display an unsupported message during boot and will be unable to enter the system. This mechanism can identify the market version to which the hardware belongs. For Xiaomi mobile phones sold in mainland China, if it is detected that the international version of the system is installed, it will not be able to start normally. Test results show that the flashed device will display "Unsupported software" (unsupported software) in the boot wizard and prompt that using this version may bring security risks. Currently, Xiaomi has

How does the learning curve of PHP frameworks compare to other language frameworks? How does the learning curve of PHP frameworks compare to other language frameworks? Jun 06, 2024 pm 12:41 PM

The learning curve of a PHP framework depends on language proficiency, framework complexity, documentation quality, and community support. The learning curve of PHP frameworks is higher when compared to Python frameworks and lower when compared to Ruby frameworks. Compared to Java frameworks, PHP frameworks have a moderate learning curve but a shorter time to get started.

Detailed practical explanation of golang framework development: Questions and Answers Detailed practical explanation of golang framework development: Questions and Answers Jun 06, 2024 am 10:57 AM

In Go framework development, common challenges and their solutions are: Error handling: Use the errors package for management, and use middleware to centrally handle errors. Authentication and authorization: Integrate third-party libraries and create custom middleware to check credentials. Concurrency processing: Use goroutines, mutexes, and channels to control resource access. Unit testing: Use gotest packages, mocks, and stubs for isolation, and code coverage tools to ensure sufficiency. Deployment and monitoring: Use Docker containers to package deployments, set up data backups, and track performance and errors with logging and monitoring tools.

See all articles