Development

Why if === is faster than if == in PHP

PHP comparison operators have == as being equal and === as being identical.

This means that == has to change or convert the type to check if it is equal. An example for this is the code below returns “yes”

$a = 1;
$b = '1';

if ($a == $b) {
    echo "yes";
} else {
    echo "no";
}

Because after type juggling (Int and string) they are equal values.

The following code will return “no”

$a = 1;
$b = '1';

if ($a === $b) {
    echo "yes";
} else {
    echo "no";
}

As 1 being an integer is not the same as ‘1’ which is set as a string.

===is faster to fail the condition. It must be noted that the actual speed gain is so minimal that you won’t even notice it, mere microseconds.

$a = true;
$b = 'yes';

if ($a == $b) {
    echo "yes";
} else {
    echo "no";
}

The code above returns “yes” because variable b is set which means it is true, therefor equal to variable a.

Share
Tags: PHPWeb Dev

Recent Posts

Kennington reservoir drained drone images

A drained and empty Kennington reservoir images from a drone in early July 2024. The…

1 year ago

Merrimu Reservoir drone images

Merrimu Reservoir from drone. Click images to view larger.

1 year ago

FTP getting array of file details such as size using PHP

Using FTP and PHP to get an array of file details such as size and…

2 years ago

Creating Laravel form requests

Creating and using Laravel form requests to create cleaner code, separation and reusability for your…

2 years ago

Improving the default Laravel login and register views

Improving the default Laravel login and register views in such a simple manner but making…

2 years ago

Laravel validation for checking if value exists in the database

Laravel validation for checking if a field value exists in the database. The validation rule…

2 years ago