PHP

[PHP] PHP/operators/comparison operators

OOQ 2022. 8. 8. 09:39
728x90
SMALL

#php

#PHP/operators/comparison operators

A comparison operator is an operator that compares two values.

$a == $b

Returns TRUE if $a equals $b. for example

$a = 123;
$b = 123;

This is TRUE. Also

$a = 123;
$b = '123';

When is also TRUE.

$a === $b

Returns TRUE if $a and $b are the same and have the same data type. for example

$a = 123;
$b = 123;

This is TRUE. but,

$a = 123;
$b = '123';

is FALSE.

$a != $b

Returns TRUE if $a is not equal to $b.

$a <> $b

Returns TRUE if $a is not equal to $b.

$a !== $b

Returns TRUE if $a is not equal to $b or is not of the same data type. for example

$a = 123;
$b = 234;

This is TRUE. Also

$a = 123;
$b = '123';

is also TRUE.

$a < $b

Returns TRUE if $a is less than $b.


$a > $b


Returns TRUE if $a is greater than $b.

$a <= $b

 

Returns TRUE if $a is less than or equal to $b.

$a >= $b


Returns TRUE if $a is greater than or equal to $b.

728x90
LIST