Home Backend Development PHP Tutorial How to improve php running speed? php7 php official website php empty

How to improve php running speed? php7 php official website php empty

Jul 29, 2016 am 08:52 AM
php improve

The biggest advantage of using PHP is its speed. In general, PHP is always fast enough to support dynamic generation of Web content, and many times it is not even possible to find a faster method than it. However, when faced with huge visits, high-load applications, limited bandwidth, and various other factors that cause performance bottlenecks, you need to consider how to improve the performance of PHP.
1. Code Optimization
Code optimization is not just about writing clean and clear code, but also simplifying the code to a certain extent. You can use Zend Optimizer to automatically help complete these tedious tasks. Zend Optimizer is available for free from Zend Technologies' website at http://www.zend.com/, but you must agree to its licensing agreement because it is not distributed under the GPL. Its principle is simple, that is, by detecting the intermediate code generated by the Zend engine and optimizing it to obtain higher execution speed.
After using Zend Optimizer, the execution efficiency of complex PHP source programs will be significantly improved immediately. The disadvantage is that the readability of the optimized code decreases, making code modification difficult.
The installation method of Zend Optimizer is very simple. Just download the relevant precompiled version according to the platform used by the user, add the following 2 lines of code to the php.ini file, and restart the web server:
zend_optimizer.optimizati />zend_extension =″/path/to/ZendOptimizer.so″
zend_loader.enable=Off
The additional third line of code is optional because disabling zend_loader will make optimization faster. It should be noted that zend_loader can only be disabled when Zend Encoder Runtime is not used.
2. Use caching
If the size of the PHP program is large, then the way to improve the speed is to use caching. There are many caching solutions available, including Zend Cache, APC and Afterburner Cache.
The above are all “caching modules”. The first time a PHP file is called, the cache module generates some intermediate code from the PHP source code and stores these intermediate codes in the memory of the web server. When these files are called later, the "compiled" code in memory can be used directly. This method can really improve the performance of the application, because it reduces disk access to a minimum (the code has been read and parsed), and the code runs directly in memory, making the server respond to requests much faster.
Of course, the caching module will also monitor changes in PHP source files and re-cache the page if necessary to prevent users from getting pages that are still generated by outdated PHP code. Because caching modules can significantly reduce the load on the server and improve the response efficiency of PHP applications, they are very suitable for websites with heavy loads.
Zend Cache is a commercial software developed by Zend Technologies. After the first run, the running speed of the PHP page will be greatly improved immediately, and the server will have more free resources. The disadvantage is that it is not free, but the price/performance ratio is still very high.
Afterburner Cache is a free caching module developed by Bware Technologies. The function is basically the same as Zend Cache, but it is not as good as Zend Cache in improving performance.
APC (Alternative PHP Cache) is another free caching module developed by Community Connect. The current version is 2.0.4 and can be obtained from http://pecl.php.net/package/APC. For product applications, its performance is very stable, and it can also greatly improve the speed of responding to requests.
3. Compress web page content
There is another important factor that affects the access speed of the site, and that is the download speed. The solution is to compress web content. For plain text content, HTTP compression technology can compress it to less than 40% of its original size, thus providing more than 60% data transmission savings. Although the Web server will cause a slight increase in CPU usage due to compression, it can save a lot of network IO used for transmission.
According to IETF specifications, most browsers support the use of gzip compression algorithm for content compression. In other words, you can use gzip to compress the web page content first, and then send it to the client browser. The browser will automatically decompress the data when receiving it, and then display the page. This process is completely transparent to users. Likewise, there are different methods for compressing the content of web pages.
Mod_gzip is an open source, standard Apache module, also called Internet content acceleration module. It can be compiled with Apache or used as a DSO. Compared with the ordinary browsing process, it can save about 40% of traffic. Mod_gzip can not only compress static content, such as HTML and XML, but also compress and transmit dynamically generated content, including SQL, Java, WML, VRML, etc., in real time on the server side. Its compression efficiency is amazing, generally 60 %~85%.
To compress the content of dynamic web pages, you can also use class.gzip to encode .php files. class.gzip compresses the content of web pages by calling some of its functions at the beginning and end of the PHP script. If the entire site requires such compression, these functions can be called in auto_prepend and auto_append in the php.ini file, but it will take up a certain amount of system overhead.
PHP4.0.4 introduces a new output buffer processing method - ob_gzhandler. Its function is exactly the same as class.gzip. The difference is that it can be added directly to the php.ini file. The syntax is as follows:
output_handler = ob_gzhandler;
This will activate PHP's output buffering feature and compress the content before sending it. If you don’t want to set it here, just change the default setting (no compression) where needed. Just modify the .htaccess file in the PHP source program directory that needs to be compressed. The syntax is as follows:
php_value output_handler ob_gzhandler
or directly Call it in PHP code:
ob_start("ob_gzhandler");
The effect of output buffering is indeed ideal and does not bring additional system overhead to the server. One thing to note is that Netscape Communicator does not support image compression. Therefore, compression of jpeg and gif images must be disabled unless you know that your visitors are using Internet Explorer.
4 Other tips
When programming, you can also use some tips to speed up PHP:
(1) Use i+=1 instead of i=i+1, which is in line with the habits of c/c++ and is relatively more efficient.
(2) Use PHP internal functions as much as possible.
(3) When single quoted strings can be used, try to use single quoted strings. Single quoted strings are more efficient than double quoted strings.
(4) Use foreach instead of while to traverse the array. The efficiency of foreach is significantly higher than that of the while loop, and there is no need to call the reset function.

The above introduces how to improve the running speed of php? , including PHP, improvement aspects, I hope it will be helpful to friends who are interested in PHP tutorials.

Statement of this Website
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

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)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

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

CakePHP Quick Guide CakePHP Quick Guide Sep 10, 2024 pm 05:27 PM

CakePHP is an open source MVC framework. It makes developing, deploying and maintaining applications much easier. CakePHP has a number of libraries to reduce the overload of most common tasks.

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

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

See all articles