Run ❯
Get your
own PHP
server
Result Size:
625 x 565
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body> <?php // Check if the type of a variable is integer $x = 5985; var_dump(is_int($x)); echo "<br>"; // Check again... $x = 59.85; var_dump(is_int($x)); ?> </body> </html>
bool(true)
bool(false)