PHP

  minte9
LearnRemember




Operators Comparison

Identity operator, true if both same type & value
Comparing strings, D > C, a > A 

$a === $b // Identical
if (10 == $a) // better than $a == 10
b1