Home Backend Development PHP Tutorial Take you to know the PHP operating mode

Take you to know the PHP operating mode

Feb 22, 2021 am 09:15 AM
php

Recommended: "PHP Video Tutorial"

PHP has five operating modes, and there are 4 common ones:

1.CGI (Common Gateway Interface)
2.FastCGI (Resident CGI/Long-Live CGI)
3.CLI (Command Line Interface)
4.LoadModule [Apache exclusive]
5.ISAPI (Internet Server Application Program Interface) [IIS exclusive]

Note: After PHP5.3, PHP no longer has an ISAPI mode, nor does it exist after installation. php5isapi.dll file. To use a higher version of PHP on IIS6, you must install the FastCGI extension and then enable IIS6 to support FastCGI.

View the current running mode
echo php_sapi_name();

CGI mode

Introduction:

CGI is the Common Gateway Interface (Common Gateway Interface). It is a program. In layman's terms, CGI is like a bridge that connects web pages and execution programs in the web server. It receives HTML The instructions are passed to the server's execution program, and then the results of the server's execution program are returned to the HTML page. CGI is extremely cross-platform and can be implemented on almost any operating system.

Calling process: Fork-And-Execute mode

User request —> web server receives request [commonly used Nginx, apache] —> fork CGI child process &Process the request--> After the request is processed, return the result to the web server&Destroy the child process-> The web server returns the result to the user

Illustration:
Take you to know the PHP operating mode
Advantages:

As the earliest operating mode of PHP, each request is processed independently, the calling process is simple and clear enough, and the controllability is strong
The processes are isolated, ensuring The data will not be polluted

Disadvantages:

Each request requires forking a new CGI subprocess. If there are a thousand concurrent requests at the same time, it means that Forking a thousand sub-processes will lead to several problems:

  1. Forking sub-processes takes time and takes up memory [copy-on-write]
  2. There are too many sub-processes. Will cause the CPU to spend a lot of time on context switching
  3. Each request requires reloading related resources

FastCGI mode

Introduction:

FastCGI is an upgraded version of CGI. FastCGI is like a long-live CGI. When starting the web server, the FastCGI process manager [PHP- FPM, IIS ISAPI, Apache Module], when a request comes, the web server only needs to be handed over to the FastCGI process manager for processing.
Calling process: Take PHP-FPM as an example

When the web server starts, the PHP-FPM master process is started (mainly responsible for allocating requests to idle self-child processes for processing) and certain Number of fast-cgi child processes (responsible for processing requests). The PHP-FPM master process manages a process pool. There are several fast-cgi sub-processes in the pool. Each fast-cgi sub-process processes a request independently without interfering with each other.

User request—> The web server receives the request [commonly used Nginx, apache]—> Detects that it is a PHP request & forwards it to the FPM master process—> The FPM master process specifies the idle fast-cgi sub-process to handle the request —> The sub-process loads files (such as php.ini) and other resource processing requests —> Processing ends & clears resources, the result is returned to master & the sub-process hangs, marked as idle —> master returns the result to the web server — > The web server returns the results to the user

Illustration:
Take you to know the PHP operating mode
Advantages:

  1. From stable From a safety point of view, FastCGI uses an independent process pool to run CGI. If a single process dies, the system can easily discard it and then reassign a new process to run the logic
  2. From a safety point of view, FastCGI Completely independent from the host web server, FastCGI will not affect the operation of the web server [If PHP-FPM is turned off, 502 bad gateway will be returned to the user]
  3. From a performance point of view, FastCGI changes the dynamic logic The processing is separated from the web server, and the heavy-load IO processing is still left to the host server, so that the host server can concentrate on IO. [For an ordinary dynamic web page, there may only be a small part of the logical processing, more pictures, etc. Loading of static resources】

Disadvantages:

A fast-cgi sub-process can only handle one request at a time, so the concurrent performance of the website is limited by the number of sub-processes
If too many processes are opened, the CPU will waste a lot of time on the process. Context switch on.
Each time the fast-cgi child process is requested, the relevant resources need to be reloaded, and the resources need to be released after the request is completed

CLI (Command Line Run/Command Line Interface)

Introduction:

php-cli mode belongs to the command line mode. It is the most unfamiliar operating mode for many developers who have just started learning PHP and started wamp and wnmp
This mode does not require the use of other programs. You can directly enter php xx.php to execute the php code.
The obvious difference between the command line mode and the regular web mode is:
No timeout period
Buffer buffering is turned off by default
Use of STDIN and STDOUT standard input/output/error
echo var_dump, phpinfo and other outputs are directly output to the console
The classes/functions that can be used are different
The php.ini configuration is different

PS: See the official documentation for details: www.php.net/manual/zh/features.com...

LoadModule (Apache exclusive)

Introduction:
The module mode is integrated in the form of mod_php5 module. At this time, the function of mod_php5 module is to receive PHP file requests passed by Apache, process these requests, and then return the processed results to Apache. .
In the Apache configuration file httpd.conf, the usually added LoadModule php7_module "D:/…/php71/php7apache2_4.dll" plays the role of this

Calling process:

User request—> Apache server—> Call the mod_php5 module to process the request—> Return the request result to Apache—> Apache returns the result to the user

Illustration:
Take you to know the PHP operating mode

ISAPI (Internet Server Application Program Interface)

Introduction:

In PHP5. After 3, PHP will no longer have an ISAPI mode, and there will no longer be the php5isapi.dll file after installation. To use a higher version of PHP on IIS6, you must install the FastCGI extension and then enable IIS6 to support FastCGI. Therefore, I won’t introduce too much here

Illustration:
Take you to know the PHP operating mode

Written at the end:

Today, with the explosive development of the Internet, most websites need to consider the high concurrency performance of the website. Nginx is increasingly favored by developers due to its lightweight and excellent concurrency performance. The LAMP combination that was once popular across the Internet is no longer the first choice for PHP developers. The suddenly emerging LNMP combination has become a required course for PHPer. This has resulted in the Apache-based LoadModule model being mentioned less and less.
In addition, the CLI mode used to write command line scripts and the almost extinct ISAPI mode are obviously not suitable for building websites.
As an enhanced version of CGI, Fast-CGI mode inherits the simplicity and security of CGI and uses PHP-FPM to manage child processes, allowing the web server to focus more on processing I/O. PHP-FPM manages and maintains a process pool. , a certain number of child processes can be forked in advance to wait for processing requests. There is no need to fork the child process when the request comes, nor to destroy the child process when the request ends.

The above is the detailed content of Take you to know the PHP operating mode. For more information, please follow other related articles on the PHP Chinese website!

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
3 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)

Hot Topics

Java Tutorial
1664
14
PHP Tutorial
1269
29
C# Tutorial
1248
24
Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? Apr 03, 2025 am 12:03 AM

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

PHP and Python: Comparing Two Popular Programming Languages PHP and Python: Comparing Two Popular Programming Languages Apr 14, 2025 am 12:13 AM

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP in Action: Real-World Examples and Applications PHP in Action: Real-World Examples and Applications Apr 14, 2025 am 12:19 AM

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

PHP: A Key Language for Web Development PHP: A Key Language for Web Development Apr 13, 2025 am 12:08 AM

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

The Enduring Relevance of PHP: Is It Still Alive? The Enduring Relevance of PHP: Is It Still Alive? Apr 14, 2025 am 12:12 AM

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

See all articles