常用函数

echo intval(4.5);//直接取整,舍弃小数保留整数【取整】
echo round(4.5);//四舍五入取整
echo ceil(4.5);//有小数,就在整数的基础上加一,【向上取整】
echo floor(4.5);//有小数,就取整数位  【向下取整】