Re: Password filter

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Tedd Sperling wrote:

> Ash:
> 
> I agree, but tell that to my client.
> 

if the requirements are really simple, such as those you mentioned in
your OP, a single regex, possibly split into more for clarity, will
suffice. 

/[A-Z]/   "must contain at least one upper case"
/[a-z]/   "must contain at least one lower case"
/[0-9]/   number
/[%.;:,_-]/   symbols 
/^.{8}/   length>=8

Keep an eye out for whitespace - e.g. trailing. 


-- 
Per Jessen, Zürich (0.8°C)
http://www.cloudsuisse.com/ - your owncloud, hosted in Switzerland.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php





[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux