PHP概率计算类

其实发这篇博感觉并没有什么用,太简单了,会的人不屑看,不会的人自已动动脑子也想到了。但是看着自已的博客已经这么久没更,真心疼~。粗略算下一篇只有代码的水文,会占用OSC至少十几KB的数据库空间呢,但是,一想到乱弹里的然并卵,也就释然了。

<?php

/**
 * 概率计算类
 * 可用于抽奖等
 */
class Probability
{
    /**
     * 概率统计数据
     * thing => chance
     */
    var $data = array();
    var $chance_count = 0;

    function __construct($initdata = array()){
        if(!empty($initdata)){
            $this->data = $initdata;
            foreach($initdata as $d){
                $this->chance_count += $d['num'];
            }
        }
    }

    function addData($name, $chance){
        $this->data[]=array('name'=>$name, 'num'=>$chance);
        $this->chance_count += $chance;
    }

    function getOne(){
        $index = rand(0, $this->chance_count);
        foreach($this->data as $d){
            $index = $index-$d['num'];
            if($index<=0){
                return $d['name'];
            }
        }
        return '';
    }
}


/**
 * 使用示例
 */
$pro=new Probability();
$pro->addData('iphone',10);
$pro->addData('watch',30);
$pro->addData('$18',50);
$pro->addData('thank you',10);
$pro->addData('super big',1);
for($i=0;$i<100;$i++){
    echo $pro->getOne()."\n";
}


你可能感兴趣的:(PHP,概率,抽奖)