Operators Flashcards
0
Q
==
A
Equality
$a == $b
Checks if the left and right values are equal
1
Q
=
A
Assignment operator.
$a = 1
Assigns the value on the right to the variable of the left.
2
Q
===
A
Identical
$a === $b
Checks if the left and right values are equal AND identical (same variable type)