RSS Element,demiblog Class,Language,Link,Title,Description channel,,en_GB,http://tobyinkster.co.uk/article/password-scripts/,Password Scripts,"====

All of this software is distributed under the terms of the GNU GPL.

ToBePaGe

Toby’s Beneficial Password Generator (ToBePaGe) is a PHP function to create pseudo-random passwords.

<?php  

/*
* Toby’s Beneficial Password Gen (a.k.a. ToBePaGe) v1.0.0
* ===============================================
*
* Usage:
* $password = pwd_gen($string);
*
* Where $string is the password pattern to use. Password patterns
* may include:
*
* %C- replaced with a uppercase consonant
* %c- lowercase consonant
* %K- same as %C, but also includes common combinations of
* consonants such as ‘Sh’, ‘Ch’ and ‘Str’
* %V- uppercase vowel (includes Y)
* %v- lowercase vowel (includes y)
* %L- uppercase letter
* %l- lowercase letter
* %a- any letter
* %n- numeric…

"