<!DOCTYPE html>
<html>
<body>
<?php
// Проверьте, является ли тип переменной float
$x = 10.365;
var_dump(is_float($x));
?>
</body>
</html>