16

newpassword

newpassword
SYNOPSIS

newpassword($len=8)

DESCRIPTION

newpassword returns a random password of $len characters.

CODE
  1. require_once 'strrand.php';
  2.  
  3. function newpassword($len=8) {
  4.     $charset = array('ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz', '0123456789');
  5.  
  6.     $pwd = strrand($charset[0], 1) . strrand($charset[1], 1) . strrand($charset[2], 1);
  7.  
  8.     $len = max($len, 4) - strlen($pwd);
  9.  
  10.     while ($len-- > 0) {
  11.         $pwd .= strrand($charset[rand(0, count($charset) - 1)], 1);
  12.     }
  13.  
  14.     return str_shuffle($pwd);
  15. }

newpassword returns 6 random letters or digits.

SEE ALSO

validatepassword, newdbpassword, strrand, emailcrypto

Comments

Your comment:
[p] [b] [i] [u] [s] [quote] [pre] [br] [code] [url] [email] strip help 2000

Enter a maximum of 2000 characters.
Improve the presentation of your text with the following formatting tags:
[p]paragraph[/p], [b]bold[/b], [i]italics[/i], [u]underline[/u], [s]strike[/s], [quote]citation[/quote], [pre]as is[/pre], [br]line break,
[url]http://www.izend.org[/url], [url=http://www.izend.org]site[/url], [email]izend@izend.org[/email], [email=izend@izend.org]izend[/email],
[code]command[/code], [code=language]source code in c, java, php, html, javascript, xml, css, sql, bash, dos, make, etc.[/code].