嗨,我有下面的代码
$product['price'] = $this->currency->
format(
$this->tax->calculate(
$product['price'],
$product['tax_class_id'],
$this->config->get('config_tax')
)
);
我必须浮上0位数字。
答案 0 :(得分:0)
由于您希望1276.0600
为1277
,所以我假设您总是想舍入到最接近的整数。
您可以使用ceil():
$num = ceil(1276.0600);
这将返回1277
,它将是一个不带小数的浮点数。