


PHP performance optimization - PHP language-level performance optimization - PHP tutorial
php performance optimization php language-level performance optimization 1
For this problem, first we need to know what is the reason that affects the performance of php? That is
1 Under what circumstances will PHP performance problems occur?
1php Improper use of syntax (including some businesses that can be processed using PHP’s own functions)
2 Use php language to do things it is not good at
3 The server connected using php language is not powerful (of course, if it is localhost, your local configuration is relatively poor, it is recommended to change it, haha)
4php’s own shortcomings (PHP itself can’t do it)
5 Questions We Don’t Know (囧)
2 Introduction to PHP performance issues and solutions to PHP performance issues
From the least difficult to the most difficult are:
1 Php language level performance optimization
2 Performance optimization of Php peripheral issues (such as mysql nginx|apache)
3 Php language senior analysis and optimization (ps mainly refers to the underlying c code)
The following is an example discussion of PHP language-level performance optimization, and a test of the content mentioned in the title. Next, we need to write two files bad.php, goods.php
What we want to test is the operation of merging two arrays (test tool apache ab test)
bad.php
Things:
First add array 1 to the target array one by one;
After, traverse array 2 and compare whether the elements of array 2 appear in array 1. If not, insert them into the target array, otherwise ignore
<span style="font-size:14px;"><?php //准备两个内容随机的数组 $arr1 = $arr2 = $arr_merged = array(); //接下来随机给两个数组赋值 for ( $i=0; $i<rand(1000,2000); $i++) { $arr1[] = rand(); } for ( $i=0; $i<rand(1000,2000); $i++) { $arr2[] = rand(); } //开始循环比较 foreach ( $arr1 as $v ) { $arr_merged[] = $v; } foreach ( $arr2 as $v ) { if(!in_array($v, $arr_merged)){ $arr_merged[] = $v; } } var_dump($arr_merged);</span>Copy after login
goods.php
Things:
Randomly generate two arrays and shuffle them in order
After that, use array_merge to merge
<span style="font-size:14px;"><?php //准备两个内容随机的数组 $arr1 = $arr2 = range(1000, 2000); $arr_merged = array(); //接下来随机给两个数组赋值 shuffle($arr1); shuffle($arr2); $arr_merged = array_merge($arr1, $arr2); var_dump($arr_merged); </span>Copy after login
3 Use ab to test the speed of two php scripts: (ps: the amazing moment begins)
bad.php
goods.php喎?http://www.Bkjia.com/kf/ware/vc/" target="_blank" class="keylink">vcD4KPHA+PGltZyBzcmM9"http://www.2cto.com/uploadfile/Collfiles/20141205/20141205084010231.png" alt="">
For these two tests, we can clearly see that the difference is not a little bit different. When executing bad.php, I obviously felt the computer fan blowing. You know!
bad.php responds to 174 requests per second, processing 572ms per request
goods.php responds to 4050 requests per second, processing 24ms per request
ps: If you still use the bad wording, change it as soon as possible, and be careful not to let your boss know!
4 The reasonI am also surprised by this result, but the facts are right in front of me and there is nothing we can do about it. So why is there such an effect? Let’s continue to find out:
*.php (php code) -----Scanner (zend engine scans line by line into syntax that zend can recognize) ----> exprs
-----parser(parse to opcode)-----> opcodes ------exec(execute final output)-------> output
You can know that a PHP file needs to be scanned first to execute zend, and then parsed into opcode for execution output. The problem lies here. When we use PHP’s own functions, it actually belongs to the zend engine, so zend is relatively easy to parse. It's smooth and fast (goods.php), but when bad.php is executed, it will be slower, because reading code written by others is definitely not as fast as reading code written by yourself, right? So I still use the original one. It’s better not to make your own wheels!
To tell you a little more, this is why many Php extensions (such as apc) now cache opcodes because this eliminates the need for scanning and parsing, which is definitely faster!
5 Summary
Optimization points: write less code and use more capabilities provided by PHP itself
Performance issues:
The code I wrote is redundant, not readable, and has low performance
Why is the performance low?
The PHP code needs to be compiled and parsed into the underlying language. This process will be processed for each request, which is very expensive.
Good method:
Use more PHP built-in variables, constants, and functions (spl can bring you useful functions)

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

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

Windows 10 vs. Windows 11 performance comparison: Which one is better? With the continuous development and advancement of technology, operating systems are constantly updated and upgraded. As one of the world's largest operating system developers, Microsoft's Windows series of operating systems have always attracted much attention from users. In 2021, Microsoft released the Windows 11 operating system, which triggered widespread discussion and attention. So, what is the difference in performance between Windows 10 and Windows 11? Which

The Windows operating system has always been one of the most widely used operating systems on personal computers, and Windows 10 has long been Microsoft's flagship operating system until recently when Microsoft launched the new Windows 11 system. With the launch of Windows 11 system, people have become interested in the performance differences between Windows 10 and Windows 11 systems. Which one is better between the two? First, let’s take a look at W

Ollama is a super practical tool that allows you to easily run open source models such as Llama2, Mistral, and Gemma locally. In this article, I will introduce how to use Ollama to vectorize text. If you have not installed Ollama locally, you can read this article. In this article we will use the nomic-embed-text[2] model. It is a text encoder that outperforms OpenAI text-embedding-ada-002 and text-embedding-3-small on short context and long context tasks. Start the nomic-embed-text service when you have successfully installed o

Performance comparison of different Java frameworks: REST API request processing: Vert.x is the best, with a request rate of 2 times SpringBoot and 3 times Dropwizard. Database query: SpringBoot's HibernateORM is better than Vert.x and Dropwizard's ORM. Caching operations: Vert.x's Hazelcast client is superior to SpringBoot and Dropwizard's caching mechanisms. Suitable framework: Choose according to application requirements. Vert.x is suitable for high-performance web services, SpringBoot is suitable for data-intensive applications, and Dropwizard is suitable for microservice architecture.

PHP and Go are two commonly used programming languages, and they have different characteristics and advantages. Among them, performance difference is an issue that everyone is generally concerned about. This article will compare PHP and Go languages from a performance perspective, and demonstrate their performance differences through specific code examples. First, let us briefly introduce the basic features of PHP and Go language. PHP is a scripting language originally designed for web development. It is easy to learn and use and is widely used in the field of web development. The Go language is a compiled language developed by Google.

The performance comparison of PHP array key value flipping methods shows that the array_flip() function performs better than the for loop in large arrays (more than 1 million elements) and takes less time. The for loop method of manually flipping key values takes a relatively long time.

Based on the continuous optimization of large models, LLM agents - these powerful algorithmic entities have shown the potential to solve complex multi-step reasoning tasks. From natural language processing to deep learning, LLM agents are gradually becoming the focus of research and industry. They can not only understand and generate human language, but also formulate strategies, perform tasks in diverse environments, and even use API calls and coding to Build solutions. In this context, the introduction of the AgentQuest framework is a milestone. It not only provides a modular benchmarking platform for the evaluation and advancement of LLM agents, but also provides researchers with a Powerful tools to track and improve the performance of these agents at a more granular level

The impact of functions on C++ program performance includes function call overhead, local variable and object allocation overhead: Function call overhead: including stack frame allocation, parameter transfer and control transfer, which has a significant impact on small functions. Local variable and object allocation overhead: A large number of local variable or object creation and destruction can cause stack overflow and performance degradation.
