andkom / rand48
A rand48 random number generator in pure PHP.
1.0.0
2018-10-07 19:13 UTC
Requires
- php: ^7.0
Requires (Dev)
- phpunit/phpunit: >=5.0
This package is auto-updated.
Last update: 2025-03-08 09:12:01 UTC
README
A rand48 random number generator implementation in pure PHP.
It's a default random number generator in Java. Also it was used in old versions of Firefox and other browsers.
Not cryptographically strong!
Install
composer require andkom/rand48
Use
$rng = new \AndKom\Rand48\Rand48(); echo $rng->random();