


The latest brief analysis of PHP features, kernel and architecture in 2022
Features of PHP8?
1. JIT just-in-time compiler. On the basis of opcache optimization, jit optimizes again combined with runtime information to directly generate machine code. JIT is not a replacement for opcache optimization, but an enhancement.
2. Match expression, used for value conversion and assignment of variables.
3. Union type.
Supports declaration and acceptance of multiple different types. It is a collection of two or more types.
4. static return type. Support for static return types in PHP 8 will be more efficient.
5. Weak mapping WeakMap. Allows keys in arrays to be placed into objects.
6. Class changes, use
1. Variable parameter inheritance (tasteless), allowed
2. Late static binding (LSB) (useful), useful for framework-level encapsulation and some factory design patterns.
3. Now you can use the following method to get the class name of the object
4. Now, new and instanceof can be used with any expression , use new(expression)(... $args) and $obj instanceof(expression).
5. Writing is now allowed.
6. Add Stringable interface (general function, used in view template encapsulation).
7. Trait can now define abstract private methods.
New features of PHP7? (Difference from PHP5)
1. Scalar type declaration and return value type declaration.
2. null coalescing operator (??)
3. Namespace reference use enhancement: classes, functions and constants imported from the same namespace can now be imported at once through a single use statement
4. Anonymous class: now supports instantiating an anonymous class through new class
5. The performance is 2 times higher than that of php5.
6. Support 64-bit.
Why is the performance of php7 improved compared to php5?
1. The variable storage bytes are reduced. Reduce memory usage, improve variable operation speed
2, and improve array structure. Array elements and hash mapping tables are allocated in the same memory, which reduces memory usage, improves CPU cache hit rate
3, and improves the function calling mechanism. By optimizing the parameter transfer process, some instructions are reduced and execution efficiency is improved.
PHP7 execution process?
Lexical analysis, cutting the source code into multiple string units (Token)
The syntax analyzer converts Token into AST abstract grammar Tree
The abstract syntax tree is converted into opcodes (opcode instruction set)
Virtual machine interprets and executes opcodes (opcode is a set of instruction identifiers, corresponding to the handler processing function)
In web mode, PHP life cycle?
SAPI runs PHP through the following stages:
1. Module initialization stage (module init):
This stage mainly carries out the initialization operations of the PHP framework and zend engine. . This stage is generally executed once when SAPI starts. For FPM, it is executed when the fpm master starts. PHP loads the code of each extension and calls its module initialization routine (MINIT) to apply for some variables required by the module, allocate memory, etc.
2. Request initialization phase (request init):
When a page request occurs, it is a stage that will be experienced before the request is processed. For fpm, it is a stage after the worker process accepts a request and reads and parses the request data. During this stage, the SAPI layer hands over control to the PHP layer, and PHP initializes the environment variables required to execute the script for this request.
3. PHP script execution stage:
The process of PHP code parsing and execution. The Zend engine takes over control, compiles the PHP script code into opcodes and executes it sequentially
4. Request shutdown:
After the request is processed, it enters the shutdown phase, PHP The cleanup process will be started. At this stage, the output content will be flushed, the http response content will be sent, etc., and then it will call the RSHUTDOWN method of each module in sequence. RSHUTDOWN is used to clear the symbol table generated when the program is running, that is, to call the unset function on each variable.
5. Module shutdown:
This stage is executed when SAPI is closed, corresponding to the module initialization stage. This stage mainly cleans resources and closes each PHP module. At the same time, the module shutdown hook function of each extension will be called back. This happens after all requests have been completed, such as shutting down fpm. (This is for SAPI such as CGI and CLI. There is no "next request", so the SAPI starts to close immediately.)
What is the php7 architecture?
Zend engine: Zend engine provides basic services for PHP, including lexical analysis and syntax analysis, AST abstract syntax tree compilation opcodes execution, PHP variable design, and memory Management, process management.
PHP layer: Binds the SAPI layer and handles communication with it. It also provides a consistent control layer for the detection of safe_mode and open_basedir, and integrates user spaces such as fopen(), fread() and fwrite() functions associated with file and network I/O.
SAPI: Including cli fpm, etc., which abstracts the external interfaces. As long as the SAPI protocol is followed, a server can be implemented.
Expansion: zend engine provides core capabilities and interface specifications. On this basis, you can develop and expand
php data implementation?
The underlying implementation of PHP data is a hash table (also called hashTable)
What is PHP’s garbage collection mechanism?
PHP can automatically manage memory and clear unnecessary objects.
PHP uses the reference counting GC mechanism.
Each object contains a reference counter refcount. Each reference is connected to the object and the counter is incremented by 1. When reference leaves the living space or is set to NULL, the counter is decremented by 1. When an object's reference counter reaches zero, PHP knows that you no longer need to use the object and releases the memory space it occupies.
#What is the architecture model of PHP-FPM? How have you optimized it?
It is an architectural pattern of master and worker. Work handles requests, and master manages and recycles child processes.
For optimization, the configuration of the number of processes has been changed.
Briefly describe: Due to the static mode configured before, the default number of processes was 200. Later, there was a certain concurrency, so I should change it to the "third" configuration mode and configure the specified number of processes. , there is a minimum value and a maximum value (the maximum value is actually forgotten here, I just think there must be no limit, after all, hardware resources are the ceiling), and then dynamically increase the number of processes based on the actual number of requests.
The above is the detailed content of The latest brief analysis of PHP features, kernel and architecture in 2022. For more information, please follow other related articles on the PHP Chinese website!

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

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

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

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

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,

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

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

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 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.
