3v4l.org

run code in 300+ PHP versions simultaneously
<?php echo "Int to bool: \n"; var_dump(10 == true); // TRUE: Here we have an integer compared to a boolean true echo "\nInt to bool strictly: \n"; var_dump(10 === true); // FALSE: Here we have an integer STRICTLY compared to a boolean true echo "\n\nInt to int striclty: \n"; var_dump(10 === 10); // TRUE: Strict comparison of same value

preferences:
29.27 ms | 404 KiB | 5 Q