The following are five optimization skills that will be helpful for development after you have mastered them. 1. Use single quotes for strings. The PHP engine allows single quotes and double quotes to encapsulate string variables. However, this 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. I
The following are five optimization skills that will be helpful for development after you have mastered them. 1. Use single quotes for strings. The PHP engine allows single quotes and double quotes to encapsulate string variables. However, this 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. I
The following are five optimization skills that will be helpful for development after you have mastered them.
1. 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';
2. 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, the memory will be 1 MB!
- BAD:
-
- $description = $_POST['description'];
-
- echo $description;
-
- GOOD:
-
- echo $_POST['description'];
3. Use the echo function to output strings
The echo () function is used to print the results. In addition to easier reading, you can see better performance in the next example.
- BAD:
-
- print($myVariable);
-
- GOOD:
-
- echo $myVariable;
4. Do not use connectors in echo
Many PHP programmers (including me) do not know that when using echo to output multiple variables, they can be separated by commas instead of strings. 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;
-
- }
From: chinaitlab