溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

利用PHP怎么實(shí)現(xiàn)一個微信紅包隨機(jī)生成算法

發(fā)布時間:2020-12-18 15:06:05 來源:億速云 閱讀:286 作者:Leah 欄目:開發(fā)技術(shù)

利用PHP怎么實(shí)現(xiàn)一個微信紅包隨機(jī)生成算法?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

想了想,自己寫寫php版的微信紅包隨機(jī)生成算法,能不能實(shí)現(xiàn)類似的功能(其實(shí)也不敢說是算法)。
// $bonus_total 紅包總金額
// $bonus_count 紅包個數(shù)
// $bonus_type 紅包類型 1=拼手氣紅包 0=普通紅包

function randBonus($bonus_total=0, $bonus_count=3, $bonus_type=1){
  $bonus_items  = array(); // 將要瓜分的結(jié)果
  $bonus_balance = $bonus_total; // 每次分完之后的余額
  $bonus_avg   = number_format($bonus_total/$bonus_count, 2); // 平均每個紅包多少錢
  $i       = 0;
  while($i<$bonus_count){
    if($i<$bonus_count-1){
      $rand      = $bonus_type?(rand(1, $bonus_balance*100-1)/100):$bonus_avg; // 根據(jù)紅包類型計算當(dāng)前紅包的金額
      $bonus_items[] = $rand;
      $bonus_balance -= $rand;
    }else{
      $bonus_items[] = $bonus_balance; // 最后一個紅包直接承包最后所有的金額,保證發(fā)出的總金額正確
    }
    $i++;
  }
  return $bonus_items;
}

好吧,我們現(xiàn)在來體驗(yàn)一下

// 發(fā)3個拼手氣紅包,總金額是100元
$bonus_items  = randBonus(100, 3, 1);
// 查看生成的紅包
var_dump($bonus_items);
// 校驗(yàn)總金額是不是正確,看看微信有沒有坑我們的錢
var_dump(array_sum($bonus_items));

另一個使用數(shù)組實(shí)現(xiàn)的版本,原理差不多:

function sendRandBonus($total=0, $count=3, $type=1){
  if($type==1){
    $input     = range(0.01, $total, 0.01);
    if($count>1){
      $rand_keys = (array) array_rand($input, $count-1);
      $last    = 0;
      foreach($rand_keys as $i=>$key){
        $current  = $input[$key]-$last;
        $items[]  = $current;
        $last    = $input[$key];
      }
    }
    $items[]    = $total-array_sum($items);
  }else{
    $avg      = number_format($total/$count, 2);
    $i       = 0;
    while($i<$count){
      $items[]  = $i<$count-1?$avg:($total-array_sum($items));
      $i++;
    }
  }
  return $items;
}

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI