PHP:数字的百分比

时间:2012-04-01 23:12:23

标签: php

我永远不会认为它甚至会有挑战性,但是有没有函数可以计算一个数字的百分比,还是我必须编写一个自定义函数?

例:
$结果=百分比(25100); //执行100%25操作
$ result = 4

1 个答案:

答案 0 :(得分:0)

function percentage($part, $whole = 100) {
     settype($part, "float");
     settype($whole, "float");
     $formule = ($part / $whole) * 100;
     return $formule . " %";
}

echo percentage(25); // returns 25 %
echo percentage(91.8, 176); // returns 52,15909090909091 %

Voila ;-)可以进一步改进,但我看到你为自己想出来了,所以不再需要..