Created
December 7, 2017 17:34
-
-
Save gbutiri/1bff7204616bef1d6b0758ea96028ff0 to your computer and use it in GitHub Desktop.
CodeIgniter - Password Helper
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function passwordError ($pwd) { | |
$error=""; | |
if( strlen($pwd) < 8 ) {$error = "Password too short. Must be at least 8 characters.";} | |
elseif( strlen($pwd) > 20 ) {$error = "Password too long. Must be no longer than 20 characters.";} | |
elseif( !preg_match("#[0-9]+#", $pwd) ) {$error = "Password must include at least one number!";} | |
elseif( !preg_match("#[a-zA-Z]+#", $pwd) ) {$error = "Password must include at least one letter!";} | |
//elseif( !preg_match("#[a-z]+#", $pwd) ) {$error = "Password must include at least one lowercase letter!";} | |
//elseif( !preg_match("#[A-Z]+#", $pwd) ) {$error = "Password must include at least one uppercase letter!";} | |
//elseif( !preg_match("#\W+#", $pwd) ) {$error = "Password must include at least one symbol!";} | |
if($error!=""){ | |
return $error; | |
} else { | |
return false; | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment