CodeIgniter system process, codeigniter process_PHP tutorial
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.

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

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

Hot Topics

How to implement custom middleware in CodeIgniter Introduction: In modern web development, middleware plays a vital role in applications. They can be used to perform some shared processing logic before or after the request reaches the controller. CodeIgniter, as a popular PHP framework, also supports the use of middleware. This article will introduce how to implement custom middleware in CodeIgniter and provide a simple code example. Middleware overview: Middleware is a kind of request

CodeIgniter Middleware: Accelerating Application Responsiveness and Page Rendering Overview: As web applications continue to grow in complexity and interactivity, developers need to use more efficient and scalable solutions to improve application performance and responsiveness. . CodeIgniter (CI) is a lightweight PHP-based framework that provides many useful features, one of which is middleware. Middleware is a series of tasks that are performed before or after the request reaches the controller. This article will introduce how to use

Introduction to the method of using the database query builder (QueryBuilder) in the CodeIgniter framework: CodeIgniter is a lightweight PHP framework that provides many powerful tools and libraries to facilitate developers in web application development. One of the most impressive features is the database query builder (QueryBuilder), which provides a concise and powerful way to build and execute database query statements. This article will introduce how to use Co

As web applications continue to evolve, it is important to develop applications more quickly and efficiently. And, as RESTful API is widely used in web applications, it is necessary for developers to understand how to create and implement RESTful API. In this article, we will discuss how to implement MVC pattern and RESTful API using CodeIgniter framework. Introduction to MVC pattern MVC (Model-Vie

CodeIgniter is a lightweight PHP framework that uses MVC architecture to support rapid development and simplify common tasks. CodeIgniter5 is the latest version of the framework and offers many new features and improvements. This article will introduce how to use the CodeIgniter5 framework to build a simple web application. Step 1: Install CodeIgniter5 Downloading and installing CodeIgniter5 is very simple, just follow these steps: Download the latest version

CodeIgniter middleware: Provides secure file upload and download functions Introduction: In the process of web application development, file upload and download are very common functions. However, for security reasons, handling file uploads and downloads often requires additional security measures. CodeIgniter is a popular PHP framework that provides a wealth of tools and libraries to support developers in building secure and reliable web applications. This article will introduce how to use CodeIgniter middleware to implement secure files

In today's Internet era, a website that is loved by users must have a simple and clear front-end interface and a powerful back-end management system, and the PHP framework CodeIgniter is an excellent framework that allows developers to quickly build a back-end management system. CodeIgniter has the characteristics of lightweight, high efficiency, and easy expansion. This article will be aimed at beginners and explain in detail how to quickly build a backend management system through this framework. 1. Installation and configuration Installation of PHPCodeIgniter is a PHP-based

With the development of mobile Internet, instant messaging has become more and more important and popular. For many companies, live chat is more like a communication service, providing a convenient communication method that can quickly and effectively solve business problems. Based on this, this article will introduce how to use the PHP framework CodeIgniter to develop a real-time chat application. Understand the CodeIgniter framework CodeIgniter is a lightweight PHP framework that provides a series of simple tools and libraries to help developers quickly
