bonds23/alphanumnique

a Small library for generate a unique alphanumeric

0.1.0 2016-06-17 02:58 UTC

This package is not auto-updated.

Last update: 2024-03-22 17:50:12 UTC


README

a Small Library For Generate an Unique Alphanumeric

Inittial
use Bonds23\Alphanumnique;

// Create new instance of generator class.
$generator = new Alphanumnique;

// Set token length.
$tokenLength = 32;

// Call method to generate random string.
$token = $generator->generate($tokenLength);