php三級分銷傭金計算公式代碼怎么寫呢?
$money = 100;
$rate = [0.5, 0.3 ,0.2]; // 分銷返利比列,對應(yīng) 1級,2級,3級
$parents = ['d', 'c', 'b']; // 推廣員 ,對應(yīng) 1級,2級,3級
foreach ($parents as $index=>$p)
{
if($p && isset($rate[$index])){
// 當前級別返利
$m = $money * 0.2 * $rate[$index];
// 業(yè)務(wù)邏輯 ...
}else{
break;
}
}