0

我有以下代码将 Magento 产品四舍五入到最接近的 $x.90、$x.80、$x.85 等,但输入是手动的。我需要一个新功能,只需按一下按钮,即可将价格带到最接近的 10 美分。所以如果价格是 11.87 美元,我需要它是 11.90 美元,如果价格是 11.63 美元,我需要它是 11.60 美元。

我该怎么做呢?

protected function _round($price, $roundTo = 0.00, $type = 'normal')
{
    $roundTo = ltrim(number_format($roundTo, 2, '.', ''), '0');

    if ($type === 'normal') {
        return round($price);
    }

    $safety = 99999999;

    if ($type === 'up' || ($type === 'down' && $roundTo < $price)) {
        while(substr($price, -(strlen($roundTo))) != $roundTo) {

            if ($type === 'up') {
                $price += .01;
            }
            else {
                $price -= .01;
            }

            $price = number_format($price, 2, '.', '');

            if (--$safety < 1) {
                throw new Exception('Error');
            }
        }

        return $price;
    }

    return false;
}   
4

1 回答 1

1

这个小功能会起作用。

function roundPrice($price){
    $rounded = round($price, 1);
    return number_format($rounded, 2);
}

$newprice = roundPrice($InputYourValueHere);

// Output the value for the purposes of the example
echo $newprice;
于 2013-02-15T09:45:22.377 回答