1. Go to this page and download the library: Download parsidev/randomizr 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/ */
// Set the max length to 16
randomizr('consonant')->make(16);
// Set the minimum length to 2
randomizr('num')->make(16, 2);
randomizr('num_dash_underscore')->make();
// or, if you prefer
randomizr('numDashUnderscore')->make();
// Using charsets only
randomizr('vowel_consonant_num')->make();
// Using the `alpha` alias to merge `vowel` and `consonant`
randomizr('alpha_num')->make();