php保留小數點後兩位不四捨五入的方法:使用函數substr,程式碼為【echo sprintf("%.2f",substr(sprintf("%.3f", $num), 0, -2))】。
php保留小數點後兩位且不四捨五入的方法:
php保留兩位小數且不四捨五入
程式碼如下:
$num = 123213.666666; echo sprintf("%.2f",substr(sprintf("%.3f", $num), 0, -2));
php進一法取整
程式碼如下:
echo ceil(4.3); // 5 echo ceil(9.999); // 10
php捨去法,取整數
程式碼如下:
echo floor(4.3); // 4 echo floor(9.999); // 9
#想了解更多程式設計學習,請關注php培訓欄位!
以上是php如何保留小數點後兩位且不四捨五入的詳細內容。更多資訊請關注PHP中文網其他相關文章!