search
HomeBackend DevelopmentPHP Tutorial40 Tips to Optimize PHP Code_PHP Tutorial

40 Tips to Optimize PHP Code_PHP Tutorial

Jul 13, 2016 pm 05:38 PM
phpcodeoptimizationCanstatementSkillimproveefficiencymethodofspeedstatic

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 has no return value and 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.requiere_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 script execution, $_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; //2cto.com

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 only replace one character at a time instead of accepting Arrays as search and replace parameters. Make big things small, 1+1>2;

12. Covering errors with @ will reduce the running speed of 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, such as For($x=0; $x

16. Creating local variables in a method is the fastest, 97xxoo is almost as fast as calling local variables in a method;

17. Creating a global variable is 2 times slower than a local variable;

18. Creating an object property (a variable in a class) such as ($this->prop++) is 3 times slower than a local variable;

19. Creating an undeclared local variable is 9-10 times slower than an initialized local variable;

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

21. The performance of a method 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);

22. The performance of methods in subclasses is better than that in base classes; //bkJia Chinese website

23. The time it takes to run a function that calls only one parameter and has an empty function body is equal to 7-8 $localvar++ operations, while a similar method (function in a class) runs equal to about 15 $localvar++ operations;

24.Surrounding your string by ' instead of ” will make things interpret a little faster since php looks for variables inside “…” but not inside ‘…’. Of course you can only do this when you don't need to have variables in the string.

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

26. In the apache server, a PHP script page takes at least 2-10 times longer to generate than the corresponding HTML static page. It is recommended to use more static HTML pages and a small number of steps;

27. Unless you have a cache installed, your php script needs to be recompiled every time it is accessed. It is recommended to install a php cache program, which can significantly improve your performance by 20-100% by removing some repeated compilation;

28. It is recommended to use memcached, a high-performance distributed memory object caching system, to improve the performance of dynamic network applications and reduce the burden on the database;

29. Use the ip2long() and long2ip() functions to convert the IP address into an integer and store it in the database instead of a character. This reduces storage space by almost 1/4. At the same time, addresses can be easily sorted and quickly searched;

30. 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; //2cto.com

31. If you are using php5 and mysql4.1 or above, consider using the improved function mysqli_* of mysql_*;

32. Try using the ternary operator (?:);

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

34. Use highlight_file() to automatically print a well-formatted copy of the page source code; //2cto.com

35. 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 and put it on the first line of each script file (or load it with require_once()). This can Effectively protect sensitive SQL queries and paths from being displayed when errors occur;

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

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

38.Fully understand “magic quotes” and the dangers of SQL injection. I’m hoping that most developers reading this are already familiar with SQL injection. However, I list it here because it’s absolutely critical to understand. If you’ve never heard the term before, spend the entire rest of the day googling and reading.//2cto.com

39.使用strlen()因为要调用一些其他操作例如lowercase和hash表查询所以速度不是太好,我们可以用isset()来实现相似的功能,isset()速度优于strlen();

40.When incrementing or decrementing the value of the variable $i++ happens to be a tad slower then ++$i. //2cto.com This is something PHP specific and does not apply to other languages, so don’t go modifying your C or Java code thinking it’ll suddenly become faster, it won’t. ++$i happens to be faster in PHP because instead of 4 opcodes used for $i++ you only need 3. Post incrementation actually causes in the creation of a temporary var that is then incremented. While pre-incrementation increases the original value directly. This is one of the optimization that opcode optimized like Zend’s PHP optimizer. It is a still a good idea to keep in mind since not all opcode optimizers perform this optimization and there are plenty of ISPs and servers running without an opcode optimizer.

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/486460.htmlTechArticle1.如果一个方法能被静态,那就声明他为静态的,速度可提高1/4; 2.echo的效率高于print,因为echo没有返回值,print返回一个整型; 3.在循环之前...
Statement
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
The Continued Use of PHP: Reasons for Its EnduranceThe Continued Use of PHP: Reasons for Its EnduranceApr 19, 2025 am 12:23 AM

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

PHP and Python: Exploring Their Similarities and DifferencesPHP and Python: Exploring Their Similarities and DifferencesApr 19, 2025 am 12:21 AM

PHP and Python are both high-level programming languages ​​that are widely used in web development, data processing and automation tasks. 1.PHP is often used to build dynamic websites and content management systems, while Python is often used to build web frameworks and data science. 2.PHP uses echo to output content, Python uses print. 3. Both support object-oriented programming, but the syntax and keywords are different. 4. PHP supports weak type conversion, while Python is more stringent. 5. PHP performance optimization includes using OPcache and asynchronous programming, while Python uses cProfile and asynchronous programming.

PHP and Python: Different Paradigms ExplainedPHP and Python: Different Paradigms ExplainedApr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python: A Deep Dive into Their HistoryPHP and Python: A Deep Dive into Their HistoryApr 18, 2025 am 12:25 AM

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Choosing Between PHP and Python: A GuideChoosing Between PHP and Python: A GuideApr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP and Frameworks: Modernizing the LanguagePHP and Frameworks: Modernizing the LanguageApr 18, 2025 am 12:14 AM

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHP's Impact: Web Development and BeyondPHP's Impact: Web Development and BeyondApr 18, 2025 am 12:10 AM

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

How does PHP type hinting work, including scalar types, return types, union types, and nullable types?How does PHP type hinting work, including scalar types, return types, union types, and nullable types?Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

See all articles

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

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.