如果使用php
的round()函数,即使使用整数,我怎么能得到两个小数值?样品
$number = round(123.456,2); // if i use number format it will not round the decimals so it will print 123.45 not 123.46
$number2 = round(123,2);
echo $number; // => 123.46
echo $number2; // => I want this one to print 123.00
答案 0 :(得分:0)
$number2 = number_format(123, 2, '.', '');
舍入整数不会返回2位小数。因此,请使用number_format();
将其显示出来。