January 4, 2021 in Php, Tips and Tricks
5.1 and 5.10 compare equal in php
Example Name Result $a == $b Equal true if $a is equal to $b after type juggling. $a === $b Identical true if $a is equal to $b, and they are of the same type. $a != $b Not equal true if $a is not equal to $b after type juggling. $a <> $b Not equal true if $a is not equal to $b after type juggling. $a !== $b Not identical true if $a is not […]







