Home Backend Development PHP Tutorial Summary of PHP code optimization skills (36 PHP optimization tips)

Summary of PHP code optimization skills (36 PHP optimization tips)

Jul 25, 2016 am 08:59 AM

This article introduces some tips on php code optimization. Friends in need can refer to them.

1. If a method can be static, declare it as static, and the speed can be increased by 1/4; 2. Echo is more efficient than print because echo does not return a value, while print returns an integer; 3. Set the maximum number of loops before the loop, not during the loop; 4. Destroy variables to release memory, especially large arrays; 5. Avoid using magic methods like __get, __set, __autoload, etc.; 6. requirere_once() consumes more resources; 7. Use absolute paths in includes and requires so that it takes less time to analyze the path; 8. If you need to get the time from sexinsex to when the script is executed, $_SERVER['REQUSET_TIME'] is better than time(); 9. If you can use character processing functions, try to use them because they are more efficient than regular expressions;// 10. str_replace character replacement is faster than regular replacement preg_replace, but strtr is 1/4 faster than str_replace; 11. If a function can accept both arrays and simple characters as parameters, such as character replacement, and the parameter list is not too long, you can consider using more concise replacement statements to replace only one character at a time instead of accepting arrays as Find and replace parameters. Big things are reduced to small things, 1+1>2; 12. Using @ to cover up errors will slow down the script; 13. $row['id'] is 7 times faster than $row[id]. It is recommended to develop the habit of adding quotes to array keys; 14. Error messages are useful; 15. Don’t use functions in loops. For example, For($x=0; $x prop++) is 3 times slower than local variables; 18. Creating an undeclared local variable is 9-10 times slower than an initialized local variable; 19. Declaring a global variable that has not been used by any function will also reduce performance (the same as declaring the same number of local variables). PHP may check whether the global variable exists; 20. The performance of methods has nothing to do with the number of methods defined in a class, because there is no performance difference after I add 10 or more methods to the tested class (these methods are before and after the test method); 21. The performance of methods in subclasses is better than that in base classes; 22. A function that calls only one parameter and has an empty function body takes 7-8 $localvar++ operations to run, while a similar method (a function in a class) takes about 15 $localvar++ operations to run; 23. It is faster to use commas instead of dots when outputting strings. Note: This only works for echo, this function can accept some strings as parameters; 24. In the apache server, it takes at least 2-10 times longer to generate a php script page than the corresponding HTML static page. It is recommended to use more static HTML pages and a small number of scripts; 25. Unless you have caching installed, your php script will need to be recompiled every time it is accessed. It is recommended to install a PHP caching program, which can significantly improve your performance by 20-100% by eliminating some repeated compilation; 26. It is recommended to use memcached, a high-performance distributed memory object caching system, to improve the performance of network applications and reduce the burden on the database; 27. Use the ip2long() and long2ip() functions to convert the IP address into an integer type and store it in the database instead of a character type. This reduces storage space by almost 1/4. At the same time, addresses can be easily sorted and searched quickly; 28. Use checkdnsrr() to confirm the validity of some email addresses through the existence of domain names. This built-in function can ensure that each domain name corresponds to an IP address; 29. If you are using php5 and mysql4.1 or above, consider using the improved function mysqli_* of mysql_*; 30. Try using the ternary operator (?:); 31. Before you think about completely redoing your project, see if PEAR has what you need. PEAR is a huge resource library that many PHP developers know; 32. Use highlight_file() to automatically print a well-formatted copy of the page source code; 33. Use the error_reporting(0) function to prevent potentially sensitive information from being displayed to the user. Ideally error reporting should be completely disabled in the php.ini file. But if you are using a shared virtual host and you cannot modify php.ini, then you'd better add the error_reporting(0) function on the first line of each script file (or use require_once() to load it). Effectively protect sensitive SQL queries and paths from being displayed when errors occur; 34. Use gzcompress() and gzuncompress() to compress (decompress) large-capacity strings when storing (retrieving) the database. This built-in function can compress up to 90% using the gzip algorithm; 35. Make a function have multiple return values ​​by referencing the parameter variable address. You can add an "&" before the variable to indicate passing it by address rather than by value; 36. Using strlen() is not very fast because it needs to call some other operations such as lowercase and hash table queries. We can use isset() to achieve similar functions. isset() is faster than strlen(); Articles you may be interested in: 40 Tips for Optimizing PHP Code



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

Video Face Swap

Video Face Swap

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

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)

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

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,

How does session hijacking work and how can you mitigate it in PHP? How does session hijacking work and how can you mitigate it in PHP? Apr 06, 2025 am 12:02 AM

Session hijacking can be achieved through the following steps: 1. Obtain the session ID, 2. Use the session ID, 3. Keep the session active. The methods to prevent session hijacking in PHP include: 1. Use the session_regenerate_id() function to regenerate the session ID, 2. Store session data through the database, 3. Ensure that all session data is transmitted through HTTPS.

Describe the SOLID principles and how they apply to PHP development. Describe the SOLID principles and how they apply to PHP development. Apr 03, 2025 am 12:04 AM

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to debug CLI mode in PHPStorm? How to debug CLI mode in PHPStorm? Apr 01, 2025 pm 02:57 PM

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

How to automatically set permissions of unixsocket after system restart? How to automatically set permissions of unixsocket after system restart? Mar 31, 2025 pm 11:54 PM

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

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.

Framework Security Features: Protecting against vulnerabilities. Framework Security Features: Protecting against vulnerabilities. Mar 28, 2025 pm 05:11 PM

Article discusses essential security features in frameworks to protect against vulnerabilities, including input validation, authentication, and regular updates.

See all articles