我是靠谱客的博主 乐观嚓茶,最近开发中收集的这篇文章主要介绍PHP实现红包算法,php发红包算法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

供参考,有其它想法,可以留言。 

/*
    $total_money:红包总金额
    $total_people:总人数/总分数
    $min_money:每份红包的最小金额
    $max_money:每份红包的最大金额
    */
    function redpack($total_money, $total_people, $min_money, $max_money)
    {
        $ret = array();
        $new_ret = array();
        $total_real_money = $total_money - $total_people * $min_money;
        $ret[0] = 0;
        for ($i = 1; $i < $total_people; $i++) {
            $ret[$i] = get_rand($ret[$i - 1], $total_real_money, ($max_money - $min_money));
        }
        sort($ret);
        for ($j = 0; $j < count($ret); $j++) {
            if ($j == count($ret) - 1) {
                $new_ret[count($ret) - 1] = $total_real_money - $ret[count($ret) - 1] + $min_money;
            } else {
                $new_ret[] = $ret[$j + 1] - $ret[$j] + $min_money;
            }
        }
        shuffle($new_ret);
        return $new_ret;
    }


    function get_rand($start, $end, $max)
    {
        $tmp = rand($start, $end);
        $total_max = $start + $max;
        if ($tmp > ($total_max) || empty($tmp)) {
            return get_rand($start, $end, $max);
        } else {
            return $tmp;
        }
    }

 

最后

以上就是乐观嚓茶为你收集整理的PHP实现红包算法,php发红包算法的全部内容,希望文章能够帮你解决PHP实现红包算法,php发红包算法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部