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.
A drained and empty Kennington reservoir images from a drone in early July 2024. The…
Merrimu Reservoir from drone. Click images to view larger.
Using FTP and PHP to get an array of file details such as size and…
Creating and using Laravel form requests to create cleaner code, separation and reusability for your…
Improving the default Laravel login and register views in such a simple manner but making…
Laravel validation for checking if a field value exists in the database. The validation rule…