使用 php 通过范围栏中给定的两个数量获取百分比
Get the Percentage by given two amount in range bar using php
我不会通过使用目标金额($3500)和我的入金金额来获得 0% 到 100% 之间的百分比。我查看了许多示例并使用它但无法正常工作。我不会显示我的资助金额($2000)。
您可以通过以下方法计算百分比:
例如:
your value : 2000;
max value: 3500
max percentage : 100
您可以将您的值乘以最大百分比,然后将结果除以最大值。即:(2000 * 100) / 3500 = 57.14。您可以四舍五入该值,从而在条形图上显示该值
100 / (fund_amount/funded_amount) = Your_percentage
100 / (1000 / 500) = 50%
100 / (3500 / 2000) = 57.142%
这是通过简单的数学计算,
您指定的金额是 100%,您需要的是资金金额的年龄百分比。
<code>
$designation_amt = 1000;
$funded_amt = 500;
$des_one_percent = $designation_amt / 100;
$result_percent = $funded_amt / $des_one_percent;
echo $result_percent; // the percentage you required.
</code>
这段代码还可以优化。
我不会通过使用目标金额($3500)和我的入金金额来获得 0% 到 100% 之间的百分比。我查看了许多示例并使用它但无法正常工作。我不会显示我的资助金额($2000)。
您可以通过以下方法计算百分比:
例如:
your value : 2000;
max value: 3500
max percentage : 100
您可以将您的值乘以最大百分比,然后将结果除以最大值。即:(2000 * 100) / 3500 = 57.14。您可以四舍五入该值,从而在条形图上显示该值
100 / (fund_amount/funded_amount) = Your_percentage
100 / (1000 / 500) = 50%
100 / (3500 / 2000) = 57.142%
这是通过简单的数学计算, 您指定的金额是 100%,您需要的是资金金额的年龄百分比。
<code>
$designation_amt = 1000;
$funded_amt = 500;
$des_one_percent = $designation_amt / 100;
$result_percent = $funded_amt / $des_one_percent;
echo $result_percent; // the percentage you required.
</code>
这段代码还可以优化。