码迷,mamicode.com
首页 > 其他好文 > 详细

小数位数保留

时间:2017-12-24 20:19:05      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:sage   round   可靠   sprintf   style   mat   pos   play   整数   

保留小数位数有很多种方法,常见的有round(),bcadd(),number_format(),sprintf()四种方法。其中round()的小数位数并不是那么可靠,它在值是整数的时候,会没有小数位数。

$str = ‘5.0000‘;

$strRound =  round($str,2);
echo ‘round: ‘.$strRound;
echo ‘<br/>‘;

$strBcadd =  bcadd($str,0,1);
echo ‘bcadd: ‘.$strBcadd;
echo ‘<br/>‘;

$strNubmerFormat =  number_format($str,2);
echo ‘number_format: ‘.$strNubmerFormat;
echo ‘<br/>‘;

$strSprintf =  sprintf(‘%.2f‘,$str);
echo ‘sprintf: ‘.$strSprintf;
echo ‘<br/>‘;

输出

round: 5
bcadd: 5.0
number_format: 5.00
sprintf: 5.00

小数位数保留

标签:sage   round   可靠   sprintf   style   mat   pos   play   整数   

原文地址:http://www.cnblogs.com/gelu/p/8098766.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!