使用php缩短长号

时间:2013-06-16 03:10:24

标签: php math numbers

如何用PHP缩短长号?所以像0.3483748937847832这样的数字会变成0.34

2 个答案:

答案 0 :(得分:1)

请先搜索stackoverflow - 来自PHP: show a number to 2 decimal places

number_format()

return number_format((float)$number, 2, '.', '');

https://stackoverflow.com/a/4483561/689579

$padded = sprintf('%0.2f', $unpadded); // 520 -> 520.00

https://stackoverflow.com/a/4483715/689579

答案 1 :(得分:0)

使用回合

echo round($ number,2);