扫码下载编程狮APP
<?php $Temperature = 12.34; if(is_float($Temperature)){ print("参数是浮点型"); }else{ print("参数不是浮点型"); } ?>