PHP code optimization. 1. do not just copy Variables. sometimes, to make PHP code more clean, some new PHP users (including me) will copy the predefined variables to a variable with a shorter name. In fact, 1. do not copy variables at will
Sometimes, to make PHP code more clean, some new PHP users (including me) will copy the predefined variables to a variable with a shorter name, in fact, the result is a doubling of the memory consumption, which only slows down the program. In the following example, if a user maliciously inserts KB of text into the text input box, 1 MB of memory will be consumed!
BAD:
$ Description = $ _ POST ['description']; echo $ description;
GOOD:
Echo $ _ POST ['description'];
2. use single quotes for strings
The PHP engine allows single quotes and double quotes to encapsulate string variables, but there is a big difference! The double quotation mark string is used to tell the PHP engine to read the string content, find the variable, and change it to the value corresponding to the variable. Generally, strings do not have variables, so using double quotation marks will lead to poor performance. It is best to use a string connection instead of a double quotation mark string.
BAD:
$ Output = "This is a plain string ";
GOOD:
$ Output = 'This is a plain string ';
BAD:
$ Type = "mixed"; $ output = "This is a $ type string ";
GOOD:
$ Type = 'mixed'; $ output = 'This is a'. $ type. 'string ';
3. use the echo function to output strings
The echo () function is used to print the result, which is easier to read. in the next example, you can see that the result has better performance.
BAD:
Print ($ myVariable );
GOOD:
Echo $ myVariable;
4. do not use connectors in echo
Many PHP programmers (including me) don't know how to use commas to separate multiple variables when outputting them with foul smell, instead of using strings to connect them first, in the first example below, there will be performance problems because the connector is used, because this will require the PHP engine to first connect all the variables and then output them, in the second example, the PHP engine will output them in sequence.
BAD:
Echo 'Hello, my name is '. $ firstName. $ lastName.' and I live in '. $ city;
GOOD:
Echo 'Hello, my name is ', $ firstName, $ lastName,' and I live In', $ city;
5. replace if/else with switch/case
The use of switch/case statements instead of if/else statements for the judgment of only one variable will provide better performance, and the code will be easier to read and maintain.
BAD:
If ($ _ POST ['action'] = 'ADD') {addUser ();} elseif ($ _ POST ['action'] = 'delete ') {deleteUser ();} elseif ($ _ POST ['action'] = 'edit') {editUser () ;} else {defaultAction ();}
GOOD:
Switch ($ _ POST ['action']) {case 'add': addUser (); break; case 'delete': deleteUser (); break; case 'edit ': editUser (); break; default: defaultAction (); break ;}
Http://www.bkjia.com/PHPjc/478724.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/478724.htmlTechArticle1. do not just copy Variables. sometimes, to make PHP code more clean, some new PHP users (including me) will copy the predefined variables to a variable with a shorter name. In fact...