Home Backend Development PHP Tutorial Some PHP Coding Tips (php tips) [Last updated on 2011/04/02]_PHP Tutorial

Some PHP Coding Tips (php tips) [Last updated on 2011/04/02]_PHP Tutorial

Jul 21, 2016 pm 03:30 PM
list php use Small Skill renew at last

Last updated: 2011/04/02

1. Use list to obtain the specific segment value after explode at one time:
list( , $mid) = explode(';', $string);
2. Use NULL === instead of is_null:
is_null and NULL === have exactly the same effect, but save a function call.

3. Try not to use === ==:
PHP has two sets of equality comparison operators ===/!== and ==/!=, ==/!= will have implicit type conversion, while ===/!== will be strict When comparing two operations, whether they are of the same type and have equal values.
We should try to use === instead of ==. In addition to the fact that the conversion rules are difficult to remember, another point is that if === is used, it will not be easy to maintain in the future. Or people who read your code will also feel comfortable: "At this moment, this line of statement, this variable is of this type!".

4. Use less/no continue:
continue is to return to The head of the loop, and the end of the loop is to return to the head of the loop, so through appropriate construction, we can completely avoid using this statement, which improves efficiency.

5. Be wary of switch/in_array, etc. Loose comparison:
switch and in_array both use loose comparison, so when the types of variables to be compared are different, it is easy to make mistakes:

Copy code The code is as follows:

switch ($name) {
case "laruence":
...
break;
case "eve":
...
break;
}

For the above switch, if $name is the number 0, then it will satisfy any case. The same is true in in_array.
The solution is to convert the variable type to the type you expect before switching.
Copy code The code is as follows:

switch (strval($name)) {
case "laruence":
...
break;
case "eve":
...
break;
}


However, in_array provides a third optional parameter, through which the default comparison method can be changed.
6. Switch is not only used to identify variables:
For example, for the following piece of code:
Copy the code The code is as follows:

if($a) {
} else if ($b) {
} else if ($c || $d) {
}

It can be simply rewritten as:
Copy the code The code is as follows:

switch (TRUE) {
case $a:
break;
case $b:
break;
case $c:
case $d:
break;
}

Yes Doesn’t it look clearer?
7. Define variables first and then use them:
Using an undefined variable is more than 8 times slower than using a defined variable!
It can be similar, the PHP engine will First, follow the normal logic to get this variable, but this variable does not exist, so the PHP engine needs to throw a NOTICE, and enter a section of logic that should be followed when using undefined variables, and then return a new variable.
In addition, From the perspective of reading code, when you use an undefined variable, it will confuse people who read your code: "Where is this variable initialized? Does it have anything to do with the previous code? Does it have anything to do with the included file?" ”
Finally, from a standard programming perspective, you also need to do this.
8. Exchange the values ​​of two variables without a third variable:
list($a, $b) = array( $b, $a),
But in fact there are still anonymous temporary variables. For integers, it is more reliable to use reciprocal operations:
Copy the code The code is as follows:

$a = $a + $b;
$b = $a - $b;
$a = $a - $b;

However, it is better to use XOR, because + – * / is prone to precision loss or overflow.
9. floor == two NOT operations (this article is provided by skiyo Provided)
Copy code The code is as follows:

echo ~~4.9;
echo floor(4.9);

The speed of using two NOT operations is basically 3 times that of floor, but there is one thing, for large numbers, overflow may occur:
Copy Code The code is as follows:

echo ~~9999999999999.99; //276447231
echo floor(99999999999999.99); //99999999999999

10. The wonderful uses of do{}while(0) (this article is provided by Qianfeng)
We know that do{}while(0) has many wonderful uses in c/c++, such as eliminating goto and macro definition code blocks.
So , the same is true in PHP, you can also use do{}while(0) to do some clever applications
Copy code The code is as follows:

do{
if(true) {
break;
}
if(true) {
break;
}
} while(false) ;
//Better than
if(true) {
} else if(true) {
} else {
}

11. Use @ as little as possible The error suppressor
has the following code:
Copy the code and the code is as follows:

@func();

is equivalent to (see in-depth understanding of PHP principles: error suppression and embedded HTML):
Copy code The code is as follows:

$report = error_reporting(0);
func();
error_reporting($report);

In addition, error suppression symbols may cause some problems, see (http://www.jb51.net/article/27022.htm);
Finally, error suppressors may also cause trouble when error debugging occurs.
12. Try to avoid using recursion (this Article from lazyboy)
Recursion performance is worrying, and most of the recursion is tail recursion, which can be eliminated.
Copy code The code is as follows:

function f($n) {
if ($n = 0) return 1;
return $n * f($n - 1);
}
//Changes to:
$result = 1;
for ($y = 1; $y < $n + 1; $y++ ) {
$result *= $y;
}

13. Use $_SERVER['REQUEST_TIME'] instead of time()
time() will cause a function call, but if the precise value of time is not high, you can use $_SERVER['REQUEST_TIME'] instead, which is much faster.
14. Avoid doing operations in the for judgment condition (this article comes from Anonymous in the message)
The following code:
for($i=0; $i}
will cause strlen to be called every time in the loop, change it to
for ($i=0, $j=strlen($str); $i<$j; $i++) {
}
15. Try to avoid using regular expressions (this article comes from pangyontao)
Regular expressions are time-consuming, try to avoid them, and use direct string processing functions instead, such as :
Copy code The code is as follows:

if (preg_match("!^foo_!i", "FoO_")) { }
// Replaced with:
if (!strncasecmp("foo_", "FoO_", 4)) { }
if (preg_match("![a8f9]!", "sometext") ) { }
// Replace with:
if (strpbrk("a8f9", "sometext")) { }
if (preg_match("!string!i", "text")) {}
// Replace with:
if (stripos("text", "string") !== false) {}

etc.
16. Use braces Variables enclosed in double quotes and heredoc
The following code:
echo "$name[2]";
PHP does not know whether the programmer intended $name. "[2]" or $ name[2],
Therefore, it is recommended to add curly brackets:
Copy code The code is as follows:

echo "{$name}[2]";
//or
echo "${name}[2]";

17. Use FALSE to indicate errors and NULL to indicate no Exists.
For operation class functions, failure returns FALSE, which means "the operation failed", while for query class functions, if the desired value cannot be found, it should return NULL, which means "cannot be found".

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/323227.htmlTechArticleLast updated: 2011/04/02 1. Use list to obtain the specific segment value after explode at one time: list ( , $mid) = explode(';', $string); 2. Use NULL === instead of is_null: is_null and NULL === End...
Statement of this Website
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

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles