1. Go to this page and download the library: Download phlak/strgen library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
phlak / strgen example snippets
// Import StrGen
use PHLAK\StrGen;
// Initialize the Generator
$generator = new StrGen\Generator();
// Generate a random string of characters
$generator->length(16)->generate(); // Returns something like '8a*Ag@I0*s0v[S3u'
$generator = new StrGen\Generator();
$generator->charset(StrGen\CharSet::ALPHA_NUMERIC)->generate();
// or
$generator->charset([StrGen\CharSet::MIXED_ALPHA, StrGen\CharSet::NUMERIC])->generate();
$generator = new StrGen\Generator();
$generator->charset('0123456789abcdef')->generate();