$password = 'acDfe5678fg';
if (preg_match('/(abcd|bcde|cdef|defg|efgh|fghi|ghij|hijk|ijkl|jklm|klmn|lmno|mnop|nopq|opqr|pqrs|qrst|rstu|stuv|tuvw|uvwx|vwxy|wxyz|0123|1234|2345|3456|4567|5678|6789)/i', $password)) {
echo('Very easy password');
} else {
echo('Good password');
}