The PHP class PasswordGenerator serves as a password generator to create memorable passwords like the macOS keychain does.
Copy the file PasswordGenerator.class.php into your project and include it in your own PHP file(s) with include 'PasswordGenerator.class.php';
. Then create an instance either by using the predefined static methods for specific languages or customize it yourself by using the standard constructor.
include 'PasswordGenerator.class.php';
// create instance with English word list
$gen = PasswordGenerator::EN();
// generate a password
echo $gen->generate();
This class works with PHP >= 5.4 and needs a working internet connection.
The generated passwords follow a specific syntax:
<random word><number between 1 and 999><special character><random word>
Some examples of generated passwords:
- Theyre778+Breakthrough
- Reforms13)Translated
- When249*Awards
The class uses RSS feeds to build a word list from which random words are used for password generation. The class has some predefined configuration for the languages English and German but can be customized too:
include 'PasswordGenerator.class.php';
// create instance with English word list
$gen = PasswordGenerator::EN();
// create instance with German word list
$gen = PasswordGenerator::DE();
// create instance with custom parameters
$gen = new PasswordGenerator([
'url' => 'http://www.tagesschau.de/newsticker.rdf',
'minlength' => 3,
'maxlength' => 6,
]);
The params minlength and maxlength denote the allowed lengths of the words from the URL source to get into the word list. If a word list has been successfully built that list is saved into the file wordlist.json
. The next time you create an instance of PasswordGenerator and the URL source cannot be contacted or does not contain any usable words that cached list is loaded instead. If you reuse the very same instance the word list is reused so no further HTTP requests are generated.
include 'PasswordGenerator.class.php';
$gen = PasswordGenerator::EN();
// reuse word list without rebuilding
echo 'Password 1: ', $gen->generate();
echo 'Password 2: ', $gen->generate();
echo 'Password 3: ', $gen->generate();
If you need to use that class in contexts where you do not have an internet connection you can prebuild a word list and copy the generated wordlist.json
file into your project. When using the PasswordGenerator you can tell it to only use that cached list and skip the URL source request:
include 'PasswordGenerator.class.php';
$gen = PasswordGenerator::CACHED();
echo $gen->generate();
As source for word lists this class uses a configurable RSS feed. The feed has to be in XML format and contain description tags from which the textual content is extracted.
This project is licensed under the MIT License - see the LICENSE.md file for details.