1、 float round ( float $val [, int $precision ] ) 傳回将 val 根據指定精度 precision (十進制小數點後數字的數目)進行四舍五入的結果。precision 也可以是負數或零(預設值)。
echo round(4.3) //4
2、 string sprintf ( string $format [, mixed $args [, mixed $... ]] ) 傳回格式化資料的字元串
複制代碼代碼如下:
$a=12.338938438;
echo sprintf("%.5f",$a) //結果:12.33894
$a=12.3312356;
echo sprintf("%.5f",$a);//12.33124
echo sprintf("%f",$a);//331236 預設小數點後6位
3、 string number_format ( float $number , int $decimals , string $dec_point , string $thousands_sep )
複制代碼代碼如下:
$number = 1234.5678;
$english_format_number = number_format($number, 2, '.', '');
echo $english_format_number ; // 1234.57
有時候需求不需要四舍五入呢,怎麼辦,沒有想到好辦法,誰知道可以告訴一聲。
function getFloatValue($f,$len)
{
$tmpInt=intval($f);
$tmpDecimal=$f-$tmpInt;
$str="$tmpDecimal";
$subStr=strstr($str,'.');
if(strlen($subStr)<$len+1)
{
$repeatCount=$len+1-strlen($subStr);
$str=$str."".str_repeat("0",$repeatCount);
}
return $tmpInt."".substr($str,1,1+$len);
}
echo getFloatValue(12.99,4) //12.9900
echo getFloatValue(12.9232555553239,4) //12.9232
來源:腳本之家