PHP - Type Handling
What will be the output of this PHP code?
$a = 0;
$b = '0';
if ($a === $b) { echo 'Equal'; } else { echo 'Not Equal'; }
$a = 0;
$b = '0';
if ($a === $b) { echo 'Equal'; } else { echo 'Not Equal'; }
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions