我想用PHP计算一个数字的百分比。例如:
$percentage = 50;
$totalWidth = 350;
对于此示例,350%的50%= 175
我该怎么做?
答案 0 :(得分:115)
$percentage = 50;
$totalWidth = 350;
$new_width = ($percentage / 100) * $totalWidth;
答案 1 :(得分:17)
将$percentage
除以100并乘以$totalWidth
。简单的数学。