I want to test before registration email and password, the goal is to refuse the password if it contains any portion of the username or email.

And secondly, it cannot include common dictionary words.

Any idea or link to help me ?

有帮助吗?

解决方案

Please give this code a try. I believe this will help

<?php
$username = "Zameer";
$email = "zameer.khan@email.com";
$password = "thisiszameer";

if (stripos($password, $username) !== false) {
    echo "Password contains username";
}
else if (stripos($password, $email) !== false) {
    echo "Password contains email";
}
else {
    echo "Does not contain username or email";
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top