計算從舊價格到新價格的折扣百分比時出現問題。當舊價格超過100美元時,折扣價值的百分比是錯誤的,但當低於100美元時,折扣的百分比是正確的。這個腳本有什麼問題?真的需要你的幫助傢伙.. 我使用Magento的1.4,折扣產品的錯誤計算
$_oldprice= substr(Mage::helper('core')->currency($_regularPrice,true,false),2);
$_newprice= substr(Mage::helper('core')->currency($_finalPrice,true,false),2);
$_discountprice= $_oldprice- $_newprice;
$count1 = $_discountprice/$_oldprice;
$count2 = $count1 * 100;
$count = number_format($count2, 0);
有人幫我請.. –
再次有人幫我請.. –