“PHP -Passwort -Validierung preg_match” Code-Antworten

PHP -Passwort -Validierung preg_match

if(!preg_match('/^(?=.*\d)(?=.*[A-Za-z])[0-9A-Za-z!@#$%]{8,12}$/', $password)) {
    echo 'the password does not meet the requirements!';
}
Ashamed Ape

PHP -Passwort -Validierung preg_match

preg_match('/^(?=.*\d)(?=.*[@#\-_$%^&+=§!\?])(?=.*[a-z])(?=.*[A-Z])[0-9A-Za-z@#\-_$%^&+=§!\?]{8,20}$/',$password)
Ashamed Ape

Ähnliche Antworten wie “PHP -Passwort -Validierung preg_match”

Fragen ähnlich wie “PHP -Passwort -Validierung preg_match”

Weitere verwandte Antworten zu “PHP -Passwort -Validierung preg_match” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen