php中float轉int的方法

2020-07-16 10:06:31

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
以上就是php中float轉int的方法的詳細內容,更多請關注TW511.COM其它相關文章!