Home  >  Article  >  Backend Development  >  40 PHP Code Optimization Tips to Avoid Detours_PHP Tutorial

40 PHP Code Optimization Tips to Avoid Detours_PHP Tutorial

WBOY
WBOYOriginal
2016-07-21 14:54:43806browse

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, and print returns an integer ;
3. Set the maximum number of loops before the loop, not inside the loop;
4. Destroy variables to free up memory, especially large arrays;
5. Avoid using things like __get, __set, __autoload and other magic methods;
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 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;
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, replacing only one character at a time, instead of accepting arrays as search and replacement 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 keep it The habit of adding quotes to array keys;
14. Error messages are very useful;
15. Don’t use functions in loops, such as For($x=0; $x < count($array); $x ), the count() function calculates first outside;
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 faster than local variables Variables are 2 times slower;
18. Creating an object property (variable in a class) such as ($this->prop++) is 3 times slower than local variables;
19. Creating an undeclared local variable 9-10 times slower than an initialized local variable;
20. Declaring a global variable that is not used by any function will also reduce performance (as well as declaring the same number of local variables), PHP may check Whether this global variable exists;
21. The performance of the method has nothing to do with the number of methods defined in a class, because I added 10 or more methods to the tested class (these methods are before and after the test method) There is no difference in performance;
22. The performance of methods in subclasses is better than that in base classes;
23. The time it takes to run a function that only calls one parameter and has an empty function body is equal to 7-8 times $ localvar++ operations, while a similar method (function in the 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 more time to generate than the corresponding HTML static page. It is recommended to use more Some static HTML pages and a few scripts;
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 to eliminate some repeated compilation. to significantly improve your performance by 20-100%;
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 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 sorted and searched quickly;
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;
31. If you are using php5 and mysql4.1 or above, consider using the improved function mysqli_* of mysql_*;
32. Try to use the ternary operator (?:);
33. You want to see if PEAR has what you need before completely redoing your project. 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;
35. Use the error_reporting(0) function to prevent potentially sensitive information from being displayed to users. 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 use require_once() to load it). 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 be compressed 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.
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. 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/364563.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