PHP code example of afaanbilal / php-random-string

1. Go to this page and download the library: Download afaanbilal/php-random-string 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/ */

    

afaanbilal / php-random-string example snippets


// Default length is 12 characters
// Default charset is ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789
(new \AfaanBilal\RandomString\RandomString())->generate();                                  
// -> Kfx70JiRotb4

// Generate a random string of 20 characters
(new \AfaanBilal\RandomString\RandomString(20))->generate();                                
// -> 92CYbvtEMXynllOZmNWK

// Generate a random string of 25 characters from capital alphabets only
(new \AfaanBilal\RandomString\RandomString(25, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'))->generate();  
// -> ZEIXAISRXEHFOADNXNHOIWKSF