<?//php保留两位小数并且四舍五入 $num = 123213.666666; echo sprintf("%.2f", $num);//php进一法取整 echo ceil(4.3); // 5 echo ceil(9.999); // 10 ?>