Improve PHP programming efficiency introduce cache mechanism to improve performance

Source: Internet
Author: User

Because PHP will search for variables in strings enclosed by double quotes, but not in single quotes. Note: Only ECHO can do this, it is a "function" that can treat multiple strings as parameters (ECHO is a language structure, not a real function, so double quotation marks are added to the function ).
1. If the class method can be defined as static, it should be defined as static as much as possible, and its speed will be increased by nearly four times.
2. $ row ['id'] is 7 times faster than $ row [ID.
3. Echo is faster than print, and multiple echo parameters are used to replace string connections, such as Echo $ str1, $ str2.
4. determine the maximum number of cycles before executing the for loop. Do not calculate the maximum value for each loop. Use foreach instead.
5. Cancel unnecessary variables, especially large arrays, to release the memory.
6. Avoid using _ Get ,__ set ,__ autoload whenever possible.
7. require_once () is expensive.
8. Try to use the absolute path when you include the file, because it avoids PHP's speed of searching for the file in include_path, and it takes less time to parse the operating system path.
9. If you want to know the time when the script starts to be executed (I .e. when the server receives a client request), use $ _ server ['request _ time'] instead of time ().
10. functions use the same functions instead of regular expressions.
11. The str_replace function is faster than the preg_replace function, but the strtr function is four times more efficient than the str_replace function.
12. If a string replacement function can take an array or character as a parameter, and the parameter length is not too long, you can consider writing an additional replacement segment. Code So that each passing parameter is a character, rather than writing only one line of code to accept the array as the query and replacement parameters.
13. Using the select branch statement is better than using multiple if and else if statements.
14. Blocking error messages with @ is very inefficient and extremely inefficient.
15. Open the mod_deflate module of Apache to speed up web page browsing.
16. When the database connection is used up, it should be switched off. Do not use persistent connections.
17. The error message is expensive.
18. Increase the local variable in the method at the fastest speed. It is almost the same as calling a local variable in a function.
19. Increasing a global variable is twice slower than increasing a local variable.
20. Incrementing an object property (for example, $ this-> prop ++) is three times slower than incrementing a local variable.
21. Increasing an unspecified local variable is 9 to 10 times slower than increasing a predefined local variable.
22. Defining only one local variable without calling it in the function also slows down (to the extent that it is equivalent to increasing a local variable ). PHP will probably check whether global variables exist.
23. Method calling seems to have nothing to do with the number of methods defined in the class, because I have added 10 methods before and after the test method, but the performance has not changed.
24. The methods in the derived class run faster than the same methods defined in the base class.
25. Calling an empty function with a parameter takes seven to eight times to increment local variables. Similar method calls take nearly 15 times to increment local variables.
26. Apache parses a PHP script two to ten times slower than parsing a static HTML page. Use static html pages and less scripts as much as possible.
27. Unless the script can be cached, it will be re-compiled every time it is called. The introduction of a PHP cache mechanism can generally improve the performance by 25% to 100%, so as to avoid compilation overhead.
28. Use memcached as much as possible. Memcached is a high-performance memory object cache system that can be used to accelerate Dynamic Web applications. Program To reduce the database load. It is useful for the cache of OP code, so that the script does not have to re-compile each request.
29. When operating a string and checking whether its length meets certain requirements, you will use the strlen () function. This function is executed quite quickly because it does not perform any calculations and only returns the known String Length stored in the zval structure (C's built-in data structure, used to store PHP variables. However, because strlen () is a function, it is more or less slow, because function calls take many steps, such as lowercase letters, PHP does not distinguish between case-insensitive function names.) and hash searches are executed along with the called function. In some cases, you can use the isset () technique to accelerate your code execution.
(For example)
If (strlen ($ Foo) <5) {echo "foo is too short" $}
(Compare with the following tips)
If (! Isset ($ Foo {5}) {echo "foo is too short" $}
Calling isset () happens to be faster than strlen (), because unlike the latter, isset () is used as a language structure, this means that function search and lowercase letters are not required for execution. That is to say, in fact, you do not spend too much money in the top-level code that checks the string length.
34. When the execution variable $ I increments or decreases, $ I ++ is slower than ++ $ I. This difference is exclusive to PhP and does not apply to other languages. Therefore, do not modify your C or Java code and expect them to become faster and useless immediately. ++ $ I is faster because it only requires three commands (Opcodes), and $ I ++ requires four commands. In fact, a temporary variable is generated in post-increment mode, which is then incremented. The pre-increment directly increases on the original value. This is a kind of optimization, as the Zend PHP optimizer does. Keeping this optimization processing in mind is a good idea, because not all command optimizers perform the same optimization and there are a large number of Internet service providers (ISPs) that do not have command optimizers) and server.
35. Object-oriented (OOP) is not required. Object-oriented usually has a high overhead, and each method and object call consumes a lot of memory.
36. arrays are also useful instead of using classes to implement all data structures.
37. Do not subdivide the methods too much. Think carefully about the code you actually intend to reuse?
38. when you need it, you can always break down the code into methods.
39. Try to use a large number of PHP built-in functions.
40. If there are a large number of time-consuming functions in the code, you can consider using C extension to implement them.
41. Profile your code. The validator will tell you how much time the Code consumes. The xdebug debugger contains an Inspection Program, which can display the code bottleneck in general.
42. mod_zip can be used as an Apache module to instantly compress your data and reduce the data transmission volume by 80%.
43. When file_get_contents can be used to replace file, fopen, feof, fgets, and other methods, try to use file_get_contents, because its efficiency is much higher! Note the PHP version of file_get_contents when opening a URL file;
44. Perform as few file operations as possible, although PHP file operations are not efficient;
45. Optimize select SQL statements and perform insert and update operations as little as possible (I have been maliciously approved in update );
46. Try to use PHP internal functions as much as possible (however, in order to find a function that does not exist in PHP, it is a waste of time to write a user-defined function. This is an empirical problem !);
47. Do not declare variables inside the loop, especially big variables: Objects (Doesn't this seem to be a concern in PHP ?);
48. Do not use nested values for multi-dimensional arrays;
49. Do not use regular expressions when using internal PHP Strings To operate functions;
50. foreach is more efficient. Use foreach instead of the while and for loops;
51. Use single quotes instead of double quotes to reference strings;
52. Replace I = I + 1 with I + = 1. In line with the C/C ++ habits, high efficiency ";
53. For global variables, unset () should be used up;

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.