php float不四捨五入截取浮點型字串的方法

來源:互聯網
上載者:User
在php中截取浮點型大致有以下幾種方法。需要的朋友可以過來參考下,希望對大家有所協助

php中截取浮點型大致有下面幾種方法:

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

以上就是本文的全部內容,希望對大家的學習有所協助,更多相關內容請關注topic.alibabacloud.com!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.