一尘不染

如何将数字格式化为仅两位小数?

mysql

我希望实数是例如12.92,而不是12.9241。有可能这样做吗?


阅读 294

收藏
2020-05-17

共1个答案

一尘不染

在PHP中,尝试 number_format

$n = 1234.5678;

// Two decimal places, using '.' for the decimal separator
// and ',' for the thousands separator.
$formatted = number_format($n, 2, '.', ',');
// 1,234.57
2020-05-17