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教學》
以上是php中float轉int的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!