PHP code example of ph7software / secure-password-generator

1. Go to this page and download the library: Download ph7software/secure-password-generator 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/ */

    

ph7software / secure-password-generator example snippets


use PH7\Generator\Password;

echo Password::generate(10); // Generate a 10-length password

use PH7\Generator\Password;

// The password won't contain any special characters such as -, _, ~, |, %, ^, !, $, #, @, and ?
echo Password::generate(Password::DEFAULT_LENGTH, false);

use PH7\Generator\Password;

// By default, it generates a 12-length password
echo Password::generate(Password::DEFAULT_LENGTH);

use PH7\Generator\Password;

// By default, it generates a 12-length password
echo Password::generate();