search
HomeBackend DevelopmentPHP TutorialPHP execution process and related concepts

This article mainly introduces the execution process and related concepts of PHP. It has certain reference value. Now I share it with you. Friends in need can refer to it

Program architecture

Let’s first look at what support is needed to run a PHP program. The starting point of everything is that it makes sense to start writing PHP from programmers, so application-level PHP script files (including various third-party PHP codes in Composer/include) are necessary. Script files must be parsed and compiled before they can be executed, so a PHP virtual machine (usually Zend engine) is also necessary. In addition, PHP scripts will use functions and classes in multiple extensions, so extensions (including official, PECL, and user-written extensions) are almost necessary. In addition, PHP programs need to interact with the outside (such as obtaining parameters from the command line and obtaining request information from the web server). This layer is responsible for SAPI, so SAPI is also necessary.

To summarize the above, the architecture of the PHP program has four layers from top to bottom, namely: application layer, SAPI layer, expansion layer and Zend engine. The architectural relationship is shown in the figure below:

PHP execution process and related concepts

(Picture source: http://www.nowamagic.net/libr...)

The SAPI layer is Some people may be relatively unknown. SAPI provides a unified set of interfaces to decouple upper-layer applications from the actual operating environment. PHP files written by users can be executed using the command line or in Apache httpd or FPM. The support work behind it is provided by SAPI, and developers are unaware of it. Through SAPI, the PHP script layer does not need to consider too much about the specific environment of execution, and PHP itself can allow SAPI to provide unique implementations based on its own characteristics.

Execution process

Putting aside the differences in various SAPI implementations, the execution process of the PHP program can be simply summarized as follows:

  1. Program starts, Zend engine and core component initialization;

  2. Extension initialization (MINIT);

  3. Request received, extension activation (RINIT);

  4. Parse and execute the PHP script;

  5. The request ends and the extension is deactivated (RSHUTDOWN);

  6. Uninstall the extension ( MSHUTDOWN);

  7. Program shutdown

Except 345, the remaining steps will only be executed once in the entire SAPI life cycle. In CGI/CLI mode, 345 is only executed once.

Understanding the life cycle of PHP programs is an essential process for PHP advancement, and can also help developers quickly locate problems. For example, if the script reports that the function does not exist, it is very likely that an extension is missing or has a loading error; in CLI/CGI mode, no matter how pconnect is, it is in vain, and the resources will be released as soon as the script is executed; exit/die Terminates the execution of the script, which does not necessarily mean the end of the process; after the script is compiled, it will reside in the memory and will not execute RINIT and RSHUTDOWN repeatedly, which is a performance improvement point of the CLI framework compared to other operating modes; etc.

For more details on each stage in the SAPI life cycle, please refer to the book "In-depth Understanding of the PHP Core".

CGI, FastCGI, PHP-FPM, etc.

CGI/FastCGI/php-cgi and PHP-FPM are several concepts that can easily confuse and confuse PHP developers. The relationship between these concepts is as follows:

CGI/FastCGI:网关协议,与语言无关,所以与PHP关系也不大。两者的区别是FastCGI可以独立于web服务器,运行FastCGI协议的程序变成web服务器的内容提供方(上游)。另外与web服务器解耦后,用FastCGI协议交互的进程具有性能好、安全稳定、支持分布式等优点;

php-cgi:实现FastCGI协议的PHP解析器,不能平滑重启和热加载;

FPM:PHP官方的FastCGI进程管理器,可执行程序为php-fpm;支持平滑重启、热加载,运行稳定;其管理对象不是php-cgi进程,两者没什么关系。

Just a few concepts are relatively easy to distinguish. In fact, what confuses developers is the combination of the following four groups of concepts:

  1. webserver. Common Apache httpd and Nginx;

  2. SAPI. Common ones are apache2handler, cli, fpm-fcgi;

  3. protocol. CGI and FastCGI mentioned in the article;

  4. programs. Namely php-cgi and php-fpm.

Since the web server is more familiar to most people, let’s talk about its relationship with other concepts: When using Apache httpd, more than 90% of the time, PHP scripts are executed in a module manner, so It is related to apache2handler in SAPI and has nothing to do with other concepts (neither CGI nor FastCGI protocol); when using Nginx, 90% of the time the request is forwarded to FPM through FastCGI protocol, so it is related to fpm-fcgi in SAPI and the protocol FastCGI and php-fpm in the program are related to the three concepts and have nothing to do with other concepts.

Summary

This article briefly reviews the architecture and execution process of PHP programs, and introduces several easily confused concepts.

Thanks for reading, corrections welcome!

The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

Analysis of PHP container Pimple running process

Advantages of using Laravel service container

The above is the detailed content of PHP execution process and related concepts. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

See all articles

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 agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)