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:
(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:
Program starts, Zend engine and core component initialization;
Extension initialization (MINIT);
Request received, extension activation (RINIT);
Parse and execute the PHP script;
The request ends and the extension is deactivated (RSHUTDOWN);
Uninstall the extension ( MSHUTDOWN);
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:
webserver. Common Apache httpd and Nginx;
SAPI. Common ones are apache2handler, cli, fpm-fcgi;
protocol. CGI and FastCGI mentioned in the article;
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!

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

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

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

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

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

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

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

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


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

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 latest version

SublimeText3 Chinese version
Chinese version, very easy to use

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

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