wataridori/bias-random

Random element(s) with weight

v0.1.0 2015-03-18 12:28 UTC

This package is auto-updated.

Last update: 2024-04-15 18:58:18 UTC


README

StyleCI Build Status Latest Stable Version Total Downloads Latest Unstable Version License

Requirement

  • PHP >= 5.4

Install

You can install and manage BiasRandom by using Composer

composer require wataridori/bias-random

Or add wataridori/bias-random into the require section of your composer.json file then run composer update

Usage

$biasRandom = new wataridori/BiasRandom/BiasRandom();
$data = [
    'wataridori' => 10,
];
$biasRandom->setData($data);
$biasRandom->addElement('Tran', 20);
$biasRandom->addElement('Duc', 30);
$biasRandom->addElement('Thang', 40);

// Random one element with weight.
$biasRandom->random();

// Random two elements
$biasRandom->random(2);

Test

Just run phpunit to start test.