如何计算数字的百分比?

时间:2012-04-18 00:16:50

标签: php percentage

我想用PHP计算一个数字的百分比。例如:

$percentage = 50;
$totalWidth = 350;

对于此示例,350%的50%= 175

我该怎么做?

2 个答案:

答案 0 :(得分:115)

$percentage = 50;
$totalWidth = 350;

$new_width = ($percentage / 100) * $totalWidth;

答案 1 :(得分:17)

$percentage除以100并乘以$totalWidth。简单的数学。