<!DOCTYPE html>
<html>
<body>
<?php
// 检查变量类型是否为浮点数
$x = 10.365;
var_dump(is_float($x));
?>
</body>
</html>