Posted by Richard Lynch on 10/06/60 11:08
Alex Gemmell wrote:
> I'm checking user chosen passwords for validity and have created 7
> tests. It's not 100% bulletproof but it will do for now. My problem
> is with the last check "have 6 unique characters". I'm at a loss at
> how to check for this in a neat one-liner.
if (count(count_chars($password, 1)) < 6) return false;
http://php.net/count_chars
No regex at all :-)
--
Like Music?
http://l-i-e.com/artists.htm
Navigation:
[Reply to this message]
|