码迷,mamicode.com
首页 > 微信 > 详细

微信红包算法

时间:2014-10-11 16:42:35      阅读:356      评论:0      收藏:0      [点我收藏+]

标签:style   color   io   os   ar   for   sp   div   on   

$number = 10; // 红包数
$total = 100; // 总金额
    
$wallet = array(); // 红包列表
    
// 算法
for($i = $number; $i > 0; $i--){
    $x = $i == 1 ? $total : mt_rand(1, $total/$i);
    $total -= $x;
    $wallet[] = $x;
}
shuffle($wallet);
    
// 结果
echo ‘total:‘, array_sum($wallet), ‘.‘;
echo ‘wallet:‘, join(‘,‘, $wallet);

微信红包算法

标签:style   color   io   os   ar   for   sp   div   on   

原文地址:http://www.cnblogs.com/SoulJaGod/p/4019096.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!