如何在PHP中找到X%X的答案?

时间:2011-11-29 19:28:27

标签: php math numbers

我有两个变量:

$percent = '3.5'; //this is the percentage
$order = 400;
//so how would i get $percent of $order?

现在在PHP中,我如何找出400%的3.5%(我知道它的14) - 但是想知道如何使用上面的两个变量直接在PHP中计算它。

感谢您的回复。

2 个答案:

答案 0 :(得分:6)

“百分比”仅表示“每100”或“超过100”或“/ 100”

$percentOfOrder = $order * ($percent / 100);

答案 1 :(得分:2)

您可以制作percentOf功能:

function percentOf($number, $percent){
    return $number * ($percent / 100);
}

//then:
echo percentOf($order, $percent);

演示:http://codepad.org/a6BgEEs2