This site is mobile accessible. Press the "Tap Here" button to use a different font-size.


Smartphone icons created by Freepik - Flaticon

PHP Numbers

Floats is_float()

bool(true)

<?php
// Check if the type of a variable is float
$x = 10.365;
var_dump(is_float($x));
?>