如何在PHP中以0位数浮起

时间:2019-04-16 13:32:43

标签: php

嗨,我有下面的代码

$product['price'] = $this->currency->
    format(
        $this->tax->calculate(
            $product['price'],
            $product['tax_class_id'],
            $this->config->get('config_tax')
        )
    );

我必须浮上0位数字。

1 个答案:

答案 0 :(得分:0)

由于您希望1276.06001277,所以我假设您总是想舍入到最接近的整数。

您可以使用ceil()

$num = ceil(1276.0600);

这将返回1277,它将是一个不带小数的浮点数。

演示:https://3v4l.org/6AQWf