我要存档的是我的类别显示折扣百分比。
<span class="box-price">
<?php if (!$product['special']) { ?>
<span class="box-price-amount"> <?php echo $product['price']; ?></span>
<?php } else { ?>
<span class="box-price-amount"> <?php echo $product['special']; ?></span>
<?php } ?>
必须计算价格和特殊价格来计算差额并以百分比显示,这是您希望能够阐明的内容。
关于如何实现这一目标的任何想法?
答案 0 :(得分:3)
公式非常简单。
(Older - Newer) / Older
例如
让Older = 100
让Newer = 75
Percentage decrease: (100 - 75) / 100
= 0.25
= 25%
另一个例子
让Older = 354
让Newer = 67
Percentage decrease: (354 - 67) / 354 = 0.81 (2 d.p). = 81%
更接近PHP
我没有看到你的太多努力,所以我不会让你太容易。
$product['price']
是你的老年人,据我所知。
$product['special']
是你的新人。
现在将Older
和Newer
换成你的变量,你应该有一些正常的PHP。