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