php中float转int的方法

php中float转int的方法

使用round(x,prec)方法

参数 描述
x 可选。规定要舍入的数字。
prec 可选。规定小数点后的位数
<?php
echo(round(0.60));
echo(round(0.50));
echo(round(0.49));
echo(round(-4.40));
echo(round(-4.60));
输出:
1
1
0
-4
-5
© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容