intval -- 获取变量的整数值

floatval -- 获取变量的浮点值

<?php
$a = 26;
$b = 4;
$a/=$b;
echo intval($a);//6
echo floatval($a);//6.5
?>

 

相信坚持的力量,日复一日的习惯.