Answers for "php regular expression password validation"

PHP
1

regex php password

^(?=P{Ll}*p{Ll})(?=P{Lu}*p{Lu})(?=P{N}*p{N})(?=[p{L}p{N}]*[^p{L}p{N}])[sS]{8,}$
Posted by: Guest on June-09-2021
0

php password validation regex

$uppercase = preg_match('@[A-Z]@', $password);
$lowercase = preg_match('@[a-z]@', $password);
$number    = preg_match('@[0-9]@', $password);

if(!$uppercase || !$lowercase || !$number || strlen($password) < 8) {
  // tell the user something went wrong
}
Posted by: Guest on August-30-2021

Code answers related to "php regular expression password validation"

Browse Popular Code Answers by Language