superdupercybertechno/randy
最新稳定版本:1.0.0
Composer 安装命令:
composer require superdupercybertechno/randy
包简介
The Mersenne Twister in PHP - A seedable pseudorandom number generator
README 文档
README
The Mersenne Twister in PHP - A seedable pseudorandom number generator
Based on this.
Install it using composer:
composer install superdupercybertechno/randy
To use it, add the following to your file:
use superDuperCyberTechno\Randy\Randy;
When you need it, simply invoke it and request numbers.
$randy = new Randy($seed);
$number = $randy->num(0,100);
Where $seed is a string of your choosing. If you leave out $seed, Randy will seed itself with a random number.
Each time you run the method num you will receive a new number within the limits passed (0 and 100 in the above example). Using the same seed will produce a predictable batch of numbers.
统计信息
- 总下载量: 6.91k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-11-14