Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/andkom/rand48-php

A rand48 random number generator implementation in pure PHP.
https://github.com/andkom/rand48-php

generator php random random-generation

Last synced: about 6 hours ago
JSON representation

A rand48 random number generator implementation in pure PHP.

Awesome Lists containing this project

README

        

# rand48.js

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

```bash
composer require andkom/rand48
```

## Use

```php
$rng = new \AndKom\Rand48\Rand48();
echo $rng->random();
```