我有一个功能,对于特定的数字范围,必须应用百分比:
此数字范围和百分比应用户定义。
实施应该尽可能简单。
您建议指定范围和计算结果?
答案 0 :(得分:0)
假设您可以访问某种数据库,我会将值存储在那里。您至少需要3个表格:
范围
用户
用户范围
使from_number和until_number列可以为空,以表示X之后的任何内容以及Y之后的任何内容。
答案 1 :(得分:0)
这是我用数组中定义规则计算结果的简短方法
$rules = array(
5 => '0-100 EUR', // here the percentages and their corresponding values
3 => '> 100 EUR'
);
$rand = mt_rand(0, 100); // calculate a random percent value
$lastPercentage = 0;
foreach($rules as $percentage => $val) {
// create a range from 0-5 (in the first iteration)
// every next iteration it is lastPercentage + 1 (5 + 1 in this case) to lastPercentage + current percentage
$range = range($lastPercentage, $percentage + $lastPercentage);
// yep, it is in the percentage range
if (in_array($rand, $range)) {
echo $lastPercentage,' < '.$rand.' > '.($percentage + $lastPercentage);
}
$lastPercentage = $percentage + 1; // +1 so that there are no overlapping ranges
}