Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 285 Bytes

README.md

File metadata and controls

12 lines (7 loc) · 285 Bytes

Token-class

Token class (Random characters)

This class can generate a random character string with the following (a-z, A-Z, 0-9).

To generate a token just create a new class Token en run the method getToken().

$Token = new Token;
$this->_token = $Token->getToken();