PHP - Operators
What will be the output of this PHP code?
$x = 0;
$y = false;
var_dump($x == $y);
var_dump($x === $y);
$x = 0;
$y = false;
var_dump($x == $y);
var_dump($x === $y);
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions