Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的付款页面上添加了一个进度条,我希望它向我们的会员展示我们已经赚了多少,还剩下多少。
现在,我可以做到这一切。我所需要的只是计算剩余金额所赚取的总金额的公式。
您可能需要的其他信息。MY 数据库将价格存储为小数点后 2 位。使用number_format($var, 2);
number_format($var, 2);
我需要百分比,所以我可以在进度条属性上打印它以显示实际的条(引导条)。
多谢你们。
只需将总收入除以目标收入,然后乘以 100:
$percentage = ($total / $goal) * 100;
number_format(($total_made/$total_needed),2)*100;
会给你需要的十进制比率。