不四捨五入只取整數
floor函數 2.1 = 2
2.6 = 2
不四捨五入浮點進位 ## ceil(-3.14)=-3
ceil(9.99)=10
# = 3
round(1.95583, 2) =1.96
intval函數2.1 = 2
2.6 = 2
intval('abc')=0
intval('5bc')=5
以上是php float函數四捨五入的實例程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!