I have used LAMP or LNMP for a long time, so how do lamps work or how are they connected? I usually just write programs and rarely think about their working principles: This article mainly shares with you the bottom layer of PHP Detailed explanation of the principle and examples, I hope it can help everyone.
The underlying working principle of PHP
Figure 1 PHP structure
As can be seen from the figure, PHP is a 4-layer system from bottom to top
①Zend Engine
Zend is implemented entirely in pure C and is the core part of PHP. It translates PHP code (lexical, syntax analysis and other compilation processes) into executable opcode processing and implementation Corresponding processing methods, implementing basic data structures (such as hashtable, oo), memory allocation and management, and providing corresponding api methods for external calls are the core of everything. All peripheral functions are implemented around zend.
②Extensions
Around the zend engine, extensions provide various basic services in a component-based manner. Our common various built-in functions (such as array series), standard libraries, etc. are all through extensions To achieve this, users can also implement their own extensions as needed to achieve function expansion, performance optimization and other purposes (for example, the PHP middle layer and rich text parsing currently used by Tieba are typical applications of extensions).
③Sapi
The full name of Sapi is Server Application Programming Interface, which is the server application programming interface. Sapi allows PHP to interact with peripheral data through a series of hook functions. This is PHP's very elegant and A successful design successfully decouples and isolates PHP itself from upper-layer applications through SAPI. PHP can no longer consider how to be compatible with different applications, and the application itself can also implement different processing methods according to its own characteristics. We will introduce it later in the sapi chapter
④Upper-layer application
This is the PHP program we usually write. We can obtain various application modes through different sapi methods, such as implementing web through webserver Apply, run as a script from the command line, etc.
Architectural idea:
The engine (Zend) + component (ext) model reduces internal coupling
The middle layer (sapi) isolates the web server and PHP
If php is a car, then
The framework of the car is php itself
Zend is the engine (engine) of the car
The various components below Ext It is the wheel of a car
Sapi can be regarded as a road, and cars can run on different types of roads
And the execution of a php program means that the car runs on the road.
Therefore, we need: excellent performance engine + suitable wheels + correct runway
The relationship between Apache and php
Apache parses php through many Modules This is done using the php Module in it.
To finally integrate php into the Apache system, you need to make some necessary settings for Apache. Here, we will take the mod_php5 SAPI operating mode of php as an example to explain. As for the concept of SAPI, we will explain it in detail later.
Assume that the versions we install are Apache2 and Php5, then you need to edit Apache’s main configuration file http.conf and add the following lines to it:
In Unix/Linux environment:
LoadModule php5_module modules/mod_php5.so
AddType application/x-httpd-php .php
Note: modules/mod_php5.so is mod_php5.so in the X system environment The installation location of the file.
In Windows environment:
LoadModule php5_module d:/php/php5apache2.dll
AddType application/x-httpd-php .php
Note: Among them, d:/php/php5apache2.dll is the installation location of the php5apache2.dll file in the Windows environment.
These two configurations tell Apache Server that any URL user request received in the future with php as the suffix needs to be processed by calling the php5_module module (mod_php5.so/ php5apache2.dll).
Apache’s life cycle
Apache’s request processing process
Apache request processing cycle detailed explanation
What are done in the 11 stages of the Apache request processing cycle?
1. Post-Read-Request phase
In the normal request processing process, this is the first stage where the module can insert hooks a stage. This stage can be exploited by modules that want to get into processing requests very early.
2. URI Translation Phase
Apache’s main job in this phase is to map the requested URL to the local file system. Modules can insert hooks at this stage to execute their own mapping logic. mod_alias uses this phase to work.
3. Header Parsing phase
Apache’s main job in this phase is to check the header of the request. Since the module can perform the task of checking request headers at any point in the request processing flow, this hook is rarely used. mod_setenvif uses this phase to work.
4. Access Control stage
Apache’s main job at this stage: Check whether access to the requested resource is allowed according to the configuration file. Apache's standard logic implements allow and deny directives. mod_authz_host uses this phase to work.
5. Authentication stage
The main work of Apache in this stage is to authenticate users according to the policy set in the configuration file and set the user name area. Modules can insert hooks at this stage to implement an authentication method.
6. Authorization phase
The main work of Apache in this phase is to check whether authenticated users are allowed to perform the requested operation according to the configuration file. The module can insert hooks at this stage to implement a user rights management method.
7. MIME Type Checking Phase
The main work of Apache in this phase is to determine the content processing function to be used based on the relevant rules of the MIME type of the requested resource. The standard modules mod_negotiation and mod_mime implement this hook.
8. FixUp stage
This is a general stage that allows the module to run any necessary processing before the content generator. Similar to Post_Read_Request, this is a hook that can capture any information and is also the most commonly used hook.
9. Response phase
The main work of Apache in this phase is to generate content returned to the client and be responsible for sending an appropriate reply to the client. This stage is the core part of the entire process.
10. Logging phase
The main work of Apache in this phase: recording transactions after the reply has been sent to the client. Modules may modify or replace Apache's standard logging.
11. CleanUp Phase
The main work of Apache in this phase: clean up the environment left after the completion of this request transaction, such as the processing of files and directories or the closing of Socket, etc. This It is the last stage of a request processing by Apache.
LAMP architecture:
Four layers from bottom to top:
①liunx belongs to the bottom layer of the operating system
②apache server, belongs to Secondary server, communicates with Linux and PHP mysql association
Android system architecture diagram
Compare the architecture diagram of lamp and Android. It seems to be somewhat similar to the lamp architecture. I don’t understand Android, but it feels a bit similar. Experts can point out the difference. Thank you very much
From top to bottom:
Android architecture——————Explanation————LAMP architecture
1. Application Program——Specific application——web application
2. Application framework——java————PHP language and library
3. System runtime library:——Virtual machine ——WEB Server
⒋Linux Kernel: —Operating System——-L
in the lamp architecture has been using LAMP or LNMP for a long time, so how does the lamp work, or How are they connected? I usually just write programs and rarely think about the working principles between them:
PHP underlying working principle
Figure 1 PHP structure
As can be seen from the picture, PHP is a 4-layer system from bottom to top
①Zend engine
Zend is implemented in pure C and is the core part of PHP. It will Code translation (a series of compilation processes such as lexical and syntax analysis) processes executable opcodes and implements corresponding processing methods, implements basic data structures (such as hashtable, oo), memory allocation and management, and provides corresponding API methods. For external calls, it is the core of everything, and all peripheral functions are implemented around zend.
②Extensions
Around the zend engine, extensions provide various basic services in a component-based manner. Our common various built-in functions (such as array series), standard libraries, etc. are all through extensions To achieve this, users can also implement their own extensions as needed to achieve function expansion, performance optimization and other purposes (for example, the PHP middle layer and rich text parsing currently used by Tieba are typical applications of extensions).
③Sapi
The full name of Sapi is Server Application Programming Interface, which is the server application programming interface. Sapi allows PHP to interact with peripheral data through a series of hook functions. This is PHP's very elegant and A successful design successfully decouples and isolates PHP itself from upper-layer applications through SAPI. PHP can no longer consider how to be compatible with different applications, and the application itself can also implement different processing methods according to its own characteristics. We will introduce it later in the sapi chapter
④Upper-layer application
This is the PHP program we usually write. We can obtain various application modes through different sapi methods, such as implementing web through webserver Apply, run as a script from the command line, etc.
Architectural idea:
The engine (Zend) + component (ext) model reduces internal coupling
The middle layer (sapi) isolates the web server and PHP
If php is a car, thenThe framework of the car is php itself
Zend is the engine of the car
The various components below Ext are the wheels of the car
Sapi can be seen as Highways, cars can run on different types of roads
And the execution of a php program means the car runs on the road.
Therefore, we need: excellent performance engine + suitable wheels + correct runway
The relationship between Apache and php
Apache parses php through many Modules This is done using the php Module in it.
To finally integrate php into the Apache system, you need to make some necessary settings for Apache. Here, we will take the mod_php5 SAPI operating mode of php as an example to explain. As for the concept of SAPI, we will explain it in detail later.
Assume that the versions we install are Apache2 and Php5, then you need to edit Apache’s main configuration file http.conf and add the following lines to it:
In Unix/Linux environment:
LoadModule php5_module modules/mod_php5.so
AddType application/x-httpd-php .php
Note: modules/mod_php5.so is mod_php5.so in the X system environment The installation location of the file.
In Windows environment:
LoadModule php5_module d:/php/php5apache2.dll
AddType application/x-httpd-php .php
Note: Among them, d:/php/php5apache2.dll is the installation location of the php5apache2.dll file in the Windows environment.
These two configurations tell Apache Server that any Url user requests received in the future, with php as the suffix, need to call the php5_module module (mod_php5.so/php5apache2.dll) for processing.
Apache’s life cycle
Apache’s request processing process
Apache request processing cycle detailed explanation
What are done in the 11 stages of the Apache request processing cycle?
1. Post-Read-Request phase
In the normal request processing process, this is the first stage where the module can insert hooks a stage. This stage can be exploited by modules that want to get into processing requests very early.
2. URI Translation Phase
Apache’s main job in this phase is to map the requested URL to the local file system. Modules can insert hooks at this stage to execute their own mapping logic. mod_alias uses this phase to work.
3. Header Parsing phase
Apache’s main job in this phase is to check the header of the request. Since the module can perform the task of checking request headers at any point in the request processing flow, this hook is rarely used. mod_setenvif uses this phase to work.
4. Access Control Phase
The main work of Apache in this phase is to check whether access to the requested resources is allowed according to the configuration file. Apache's standard logic implements allow and deny directives. mod_authz_host uses this phase to work.
5. Authentication stage
The main work of Apache in this stage is to authenticate users according to the policy set in the configuration file and set the user name area. Modules can insert hooks at this stage to implement an authentication method.
6. Authorization phase
The main work of Apache in this phase is to check whether authenticated users are allowed to perform the requested operation according to the configuration file. The module can insert hooks at this stage to implement a user rights management method.
7. MIME Type Checking Phase
The main work of Apache in this phase is to determine the content processing function to be used based on the relevant rules of the MIME type of the requested resource. The standard modules mod_negotiation and mod_mime implement this hook.
8. FixUp stage
This is a general stage that allows the module to run any necessary processing before the content generator. Similar to Post_Read_Request, this is a hook that can capture any information and is also the most commonly used hook.
9. Response phase
The main work of Apache in this phase is to generate content returned to the client and be responsible for sending an appropriate reply to the client. This stage is the core part of the entire process.
10. Logging phase
The main work of Apache in this phase: recording transactions after the reply has been sent to the client. Modules may modify or replace Apache's standard logging.
11. CleanUp Phase
The main work of Apache in this phase: clean up the environment left after the completion of this request transaction, such as the processing of files and directories or the closing of Socket, etc. This It is the last stage of a request processing by Apache.
LAMP architecture:
Four layers from bottom to top:
①liunx belongs to the bottom layer of the operating system
②apache server, belongs to Secondary server, communicates between Linux and PHP
③php: It is a server-side programming language and is associated with apache through the php_module module
④mysql and other web services: belong to application services, and are associated with mysql through PHP's Extensions plug-in module
Android system architecture diagram
Compare lamp with Android's architecture diagram, it seems to be similar to lamp The architecture is somewhat similar. I don’t understand Android, but it feels a bit similar. Experts can point out the differences. I would be very grateful.
From top to bottom:
Android architecture ——————Description——–LAMP architecture
1. Application——–Specific application——–Web application
2. Application framework——java————- PHP language and library
3. System runtime library: --Virtual machine --WEB server
⒋Linux kernel: --Operating system ---L
## in lamp architecture #Related recommendations:Explanation of the underlying operating mechanism and principles of PHP
#PHP underlying analysis: About copy-on-write cow cow plural win color forum ww7349cow Japan cow Cow Milk Stone
In-depth understanding of the underlying mechanism of PHP_PHP Tutorial
The above is the detailed content of Detailed explanation of PHP underlying principles examples. 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字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

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

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

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


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

SublimeText3 English version
Recommended: Win version, supports code prompts!

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.

Zend Studio 13.0.1
Powerful PHP integrated development environment

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

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
