<?php
$x = 8;
$y = 8.0;
echo ($x === $y);
?>
When I change from === to == there is output 1(true) but why I don't receive any output while using ===?
<?php
$x = 8;
$y = 8.0;
echo ($x === $y);
?>
When I change from === to == there is output 1(true) but why I don't receive any output while using ===?