如何计算数字的百分比?[已关闭]

2022-08-30 08:50:23

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

$percentage = 50;
$totalWidth = 350;

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

我该怎么做?


答案 1
$percentage = 50;
$totalWidth = 350;

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

答案 2

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


推荐