我的格式为php的圆值

时间:2015-09-22 08:07:19

标签: php rounding

如何以nex格式舍入值?

  • 101.10,101.11,101.12,101.13,101.14

到101.10,

  • 101.15,101.16,101.17,101.18,101.19

至101.20

2 个答案:

答案 0 :(得分:2)

我认为您正在寻找的功能是例如。 round( 101.11, 1, PHP_ROUND_HALF_UP)

结果将是:

101.11 101.1
101.12 101.1
101.13 101.1
101.14 101.1
101.15 101.2
101.16 101.2
101.17 101.2
101.18 101.2
101.19 101.2

希望这有帮助

答案 1 :(得分:0)

使用round()

中的第二个参数

http://php.net/manual/en/function.round.php