function isValid($pass) { if (preg_match('/(i|o|l)/', $pass)) { return false; } $chars = str_split($pass); if (!hasIncreasing($chars)) { return false; } if (!hasPairs($chars)) { return false; } return true; }
function validPass($pass) { return hasTriplet($pass) & allLegalLetters($pass) & hasPairs($pass); }