sinergi/token

PHP library to generate random strings

0.1.0 2014-05-24 13:27 UTC

This package is not auto-updated.

Last update: 2024-03-16 13:05:16 UTC


README

Build Status

A handful of tools for PHP developers.

Requirements

This library uses PHP 5.4+.

Installation

It is recommended that you install the Token library through composer. To do so, add the following lines to your composer.json file.

{
    "require": {
       "sinergi/token": "dev-master"
    }
}

Usage

use Sinergi\Token\StringGenerator;

StringGenerator::randomAlnum(32);

Methods

  • randomAlnum Generate alpha-numeric string

    • Parameters
    • int $length The length of the string to generate
    • Optional bool $onlyUppercase Use only uppercase letters
  • randomAlpha Generate alpha string

    • Parameters
    • int $length The length of the string to generate
    • Optional bool $onlyUppercase Use only uppercase letters
  • randomNumeric Generate numeric string

    • Parameters
    • int $length The length of the string to generate
  • randomHexa Generate hexa string

    • Parameters
    • int $length The length of the string to generate
  • randomUuid Generate uuid string

  • randomId Generate id string