CodeIgniter system process, codeigniter process
-------------------------- -------------------------------------------------- -----------------------
Enter the framework entry file index.php =>
Define the current environment of the application (used to set error mode): define('ENVIRONMENT', 'development');
Set the system file directory name: $system_path = 'system';
Set the application file directory name: $application_folder = 'application'; //Can be customized
Define the current file name constant: define('SELF', pathinfo(__FILE__, PATHINFO_BASEPATH));
Define PHP file suffix constant: define('EXT', '.php'); //This global constant is not recommended to be used
Define system directory path constants: define('BASEPATH', str_replace('\', '/', $system_path));
Define the front-end controller file path constant: define('FCPATH', str_replace(SELF, '', __FILE__));
Define system directory name constants: define('SYSDIR', trim(strchr(trim(BASEPATH, '/'), '/'), '/'));
Define application directory path constant: define('APPPATH', BASEPATH.$application_folder.'/');
Load the boot file: require_once BASEPATH.'core/CodeIgniter.php';
---------------------------------@黑eyedpoet
Enter the system initialization file CodeIgniter.php =>
define('CI_VERSION', '2.2.0');
define('CI_CORE', FALSE);
require(BASEPATH.'core/Common.php'); //Introducing public function library files, including functions such as load_class()
require(APPPATH.'config/'.ENVIRONMENT.'/constants.php'); //Introducing framework constant files, file and directory mode & file stream mode
set_error_handler('_exception_handler'); //Define a custom error handler to record PHP errors
if ( ! is_php('5.3'))
{
@set_magic_quotes_runtime(0); // Kill magic quotes
}
if (isset($assign_to_config['subclass_prefix']) AND $assign_to_config['subclass_prefix'] != '')
//Set subclass prefix
{
get_config(array('subclass_prefix' => $assign_to_config['subclass_prefix']));
}
if (function_exists("set_time_limit") == TRUE AND @ini_get("safe_mode") == 0)
//Set a free script execution time limit
{
@set_time_limit(300);
}
$BM =& load_class('Benchmark', 'core');
//Instantiate the Benchmark benchmark class. This class allows you to mark points and calculate the time difference between them. Memory consumption can also be displayed
$BM->mark('total_execution_time_start');
//Benchmark mark, total execution time starts: $this->marker['total_execution_time_start'] = microtime();
$BM->mark('loading_time:_base_classes_start');
//Benchmark mark, loading time: $this->marker['loading_time:_base_classes_start'] = microtime();
$EXT =& load_class('Hooks', 'core'); //Instantiate the Hooks hook class to provide a mechanism to extend the basic system without stacking
$EXT->_call_hook('pre_system'); //Call the specified hook pre_system
$CFG =& load_class('Config', 'core'); //Instantiate the Config configuration class, including methods for managing configuration files
if (isset($assign_to_config))
{
$CFG->_assign_to_config($assign_to_config);
//Call the _assign_to_config method in Config.php to ensure that configuration items are assigned and rewritten through variables
}
$UNI =& load_class('Utf8', 'core'); //Instantiate Utf8 class to provide support for UTF-8 environment
$URI =& load_class('URI', 'core'); //Instantiate URI class, parse URI and determine routing
$RTR =& load_class('Router', 'core'); //Instantiate Router routing class, parse URI and determine routing
, and the route set in the routing configuration file
if (isset($routing)) { $RTR->_set_overrides($routing); //Set controller overrides }
$OUT =& load_class('Output', 'core'); //Instantiate the Output output class, responsible for sending the final output to the browser
{
if ($OUT->_display_cache($CFG, $URI) == TRUE)
{
Exit; //Check whether there is a cache file, if so, exit the current script directly
}
$SEC =& load_class('Security', 'core'); //Instantiate the Security security class
$IN =& load_class('Input', 'core'); //Instantiate the Input input class and preprocess the global input data for safety
$LANG =& load_class('Lang', 'core'); //Instantiate the Lang language class
require BASEPATH.'core/Controller.php';, //Introducing the basic controller class
function &get_instance()
{
return CI_Controller::get_instance(); //Return static variable $instance
}
if (file_exists(APPPATH.'core/'.$CFG->config['subclass_prefix'].'Controller.php'))
{
require APPPATH.'core/'.$CFG ->config['subclass_prefix'].'Controller.php';
//Introduce custom extension basic controller class
}
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');
//Load local controller
$BM->mark('loading_time:_base_classes_end');
//Benchmark mark, the end of loading time: $this->marker['loading_time:_base_classes_end'] = microtime();
Security Check
$EXT->_call_hook('pre_controller'); //Call "pre_controller" hook
$BM->mark('controller_execution_time_( '.$class.' / '.$method.' )_start'); //Benchmark mark, controller execution time mark point
$CI = new $class(); //Instantiate the request controller
$EXT->_call_hook('post_controller_constructor'); //Call "post_controller_constructor" hook
Call the requested method
$BM->mark('controller_execution_time_( '.$class.' / '.$method.' )_end'); //Benchmark mark, controller execution time end mark point
$EXT->_call_hook('post_controller'); //Call "post_controller" hook
if ($EXT->_call_hook('display_override') === FALSE)
{
$OUT->_display(); //Send the final rendering output to the browser
}
$EXT->_call_hook('post_system'); //Call "post_system" hook
if (class_exists('CI_DB') AND isset($CI->db))
{
$CI->db->close(); //Close the database connection
}
-------------------------------------------------- --------------------------------------------------
Zend Framework takes a lot of time and is not suitable for quick learning.
There are many framework programs at home and abroad, such as speedphp, qeephp, cakephp, TP, etc.
According to the poster’s request, then there is only CI , I personally think it’s pretty good,
About CodeIgniter
CodeIgniter is a set of application development frameworks and toolkits for PHP website developers. It provides a rich set of standard libraries and simple interfaces and logical structures, aiming to enable developers to develop projects more quickly. Use CodeIgniter to reduce the amount of code you write and focus your energy on the creative development of your projects.
CodeIgniter was developed by Rick Ellis, CEO of Ellislab. Its core framework is specially written for this program, while many other class libraries, auxiliary functions and subsystems come from the content management system ExpressionEngine written by Rick Ellis and Paul Burdick. Inspiration from Ruby on Rails inspired us to create a PHP framework and bring the concept of frameworks into the general consciousness of the web community.
She is a small but powerful PHP framework. As a simple and "elegant" toolkit, she can build fully functional web applications for PHP programmers. If you are a developer who shares your hosting and is worried about client deadlines, if you are tired of those stupid and clunky frameworks, then CodeIgniter is what you need if...
* You Want a compact frame.
* You need great performance.
* You need broad compatibility with various PHP versions and configurations on standard hosts (e.g. PHP4).
* You want a framework that requires almost 0 configuration.
* You want a framework that doesn't require the command line.
* You want a framework that doesn't have to adhere to restrictive coding rules.
* You are not interested in large-scale integration libraries like PEAR.
* You don't want to be forced to learn a template language (although you can choose the template parser you ask for).
* You don’t like complexity and love simplicity.
* You need clear, complete documentation.
The most important thing is that CI’s documentation is simple, rich and easy to understand, haha
If you want to learn, you can go to CI China and have a look, you don’t need me to post the address for you
To be honest, I don’t know how to configure phpmyadmin, apache and other things under ubuntu.
But I have a question, did you install the Ubuntu virtual machine because you want to use codeigniter?
If this is the case, you can actually run it directly under windows. The first thing you have to do is install a server locally, because php is compiled by the server. Personally recommend xampp. After installation, make sure everything is running normally, and then check the status on localhost.
Okay, now let’s talk about codeigniter. codeigniter is a PHP framework. If you have not learned PHP, you must first lay the foundation of PHP before learning this. PHP has three ways of writing code (you can understand it this way, haha), regular, object-oriented, and MVC. Codeigniter uses the mvc method. MVC is Model, view and controller. Model is mainly used to call data in the database, and Controller can be understood as the middleman between model and view. It will get the value from the model and pass it to the view. View is the place used for display. Language examples: html, css, javascript.
How to use codeigniter?
After installing xampp, go to the installed folder to find htdocs, and then create a folder. Then just throw him in like this.
(The highlighted folder was created by me)
That’s basically it.
In fact, the most important thing now is to lay a good foundation. It seems from the question that you don't understand these things at all, so sometimes you are too lazy to answer questions like this. Hope you can find a solution.

如何在CodeIgniter中实现自定义中间件引言:在现代的Web开发中,中间件在应用程序中起着至关重要的作用。它们可以用来执行在请求到达控制器之前或之后执行一些共享的处理逻辑。CodeIgniter作为一个流行的PHP框架,也支持中间件的使用。本文将介绍如何在CodeIgniter中实现自定义中间件,并提供一个简单的代码示例。中间件概述:中间件是一种在请求

CodeIgniter中间件:加速应用程序的响应速度和页面渲染概述:随着网络应用程序的复杂性和交互性不断增长,开发人员需要使用更加高效和可扩展的解决方案来提高应用程序的性能和响应速度。CodeIgniter(CI)是一种基于PHP的轻量级框架,提供了许多有用的功能,其中之一就是中间件。中间件是在请求到达控制器之前或之后执行的一系列任务。这篇文章将介绍如何使用

在CodeIgniter框架中使用数据库查询构建器(QueryBuilder)的方法引言:CodeIgniter是一个轻量级的PHP框架,它提供了许多功能强大的工具和库,方便开发人员进行Web应用程序开发。其中一个令人印象深刻的功能是数据库查询构建器(QueryBuilder),它提供了一种简洁而强大的方法来构建和执行数据库查询语句。本文将介绍如何在Co

随着Web应用程序的不断发展,更加快速和高效地开发应用程序变得非常重要。并且,随着RESTfulAPI在Web应用程序中的广泛应用,对于开发人员来说,必须理解如何创建和实现RESTfulAPI。在本文中,我们将讨论如何使用CodeIgniter框架实现MVC模式和RESTfulAPI。MVC模式简介MVC(Model-Vie

CodeIgniter是一个轻量级的PHP框架,采用MVC架构,支持快速开发和简化常见任务。CodeIgniter5是该框架的最新版本,提供了许多新的特性和改进。本文将介绍如何使用CodeIgniter5框架来构建一个简单的Web应用程序。步骤1:安装CodeIgniter5下载和安装CodeIgniter5非常简单,只需要遵循以下步骤:下载最新版本

现今互联网时代,一款深受用户喜爱的网站必须具备简洁明了的前端界面和功能强大的后台管理系统,而PHP框架CodeIgniter则是一款能够让开发者快速搭建后台管理系统的优秀框架。CodeIgniter拥有轻量级、高效率、易扩展等特点,本文将针对初学者,详细说明如何通过该框架快速搭建一个后台管理系统。一、安装配置安装PHPCodeIgniter是一个基于PHP的

随着移动互联网的发展,即时通信变得越来越重要,越来越普及。对于很多企业而言,实时聊天更像是一种通信服务,提供便捷的沟通方式,可以快速有效地解决业务方面的问题。基于此,本文将介绍如何使用PHP框架CodeIgniter开发一个实时聊天应用。了解CodeIgniter框架CodeIgniter是一个轻量级的PHP框架,提供了一系列的简便的工具和库,帮助开发者快速

近年来,Web开发技术的进步和全球互联网应用的不断扩大,使得PHP技术应用面越来越广泛。作为一种快速开发的技术,其生态系统也在不断发展壮大。其中,CodeIgniter作为PHP开发领域中著名的框架之一,备受众多开发者的欢迎。本篇文章将介绍CodeIgniter框架的相关知识,以此为初学者提供一个入门的指引。一、什么是CodeIgniter框架?CodeIg


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

WebStorm Mac version
Useful JavaScript development tools

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1
Powerful PHP integrated development environment
