Result Size: 625 x 571
x
 
<!DOCTYPE html>
<html>
<body>
<?php
$x = 100;  
$y = "100";
var_dump($x != $y); // returns false because values are equal
?>  
</body>
</html>
bool(false)
×

Report a Problem: