Gacha-Gacha is an implementation of weighted randomization in PHP.
Gacha-Gacha requires PHP >= 5.3.3.
require_once './vendor/onody/gachagacha/src/autoload.php';
$gachagacha = new \GachaGacha\Picker();
$gachagacha->set('Marks', 30.124);
$gachagacha->set('Daniel', 20);
$gachagacha->set('Schuster', 0);
$gachagacha->pick(); // single item
$gachagacha->pick(1000); // array of items
{
"require": {
"onody/gachagacha": "1.0.0"
}
}
php composer.phar install
[MIT]