您好,登錄后才能下訂單哦!
這篇文章主要講解了“php實現注冊時輸入信息驗證器”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“php實現注冊時輸入信息驗證器”吧!
1、對輸入信息進行驗證的類(主要用于驗證用戶名,密碼,重復密碼,郵箱,可添加其它功能)
復制代碼 代碼如下:
<?php
/**
* Validator for Register.
*/
final class RegisterValidator {
private function __construct() {
}
/**
* Validate the given username, password, repeat_password and email.
* @param $username, $password, $repeat_password and $email to be validated
* @return array array of {@link Error} s
*/
public static function validate($username, $password, $repeat_password, $email) {
$errors = array();
$username = trim($username);
$password = trim($password);
if (!$username) {
$errors[] = new Error('username', '用戶名不能為空。');
} elseif (strlen($username)<3) {
$errors[] = new Error('username', '用戶名長度不能小于3個字符。');
} elseif (strlen($username)>30) {
$errors[] = new Error('username', '用戶名長度不能超過30個字符。');
} elseif (!preg_match('/^[A-Za-z]+$/',substr($username, 0, 1))) {
$errors[] = new Error('username', '用戶名必須以字母開頭。');
} elseif (!preg_match('/^[A-Za-z0-9_]+$/', $username)) {
$errors[] = new Error('username', '用戶名只能是字母、數字以及下劃線( _ )的組合。');
} elseif (!$password) {
$errors[] = new Error('password', '密碼不能為空。');
} elseif (strlen($password)<6) {
$errors[] = new Error('password', '密碼長度不能小于6個字符。');
} elseif (strlen($password)>30) {
$errors[] = new Error('password', '密碼長度不能超過30個字符。');
} elseif (!preg_match('/^[A-Za-z0-9!@#\\$%\\^&\\*_]+$/', $password)) {
$errors[] = new Error('password', '密碼只能是數字、字母或!@#$%^&*_等字符的組合。');
} elseif ($password != trim($repeat_password)) {
$errors[] = new Error('password', '兩次輸入密碼不一致。');
} elseif (!Utils::isValidEmail($email)) {
$errors[] = new Error('email', '郵箱格式有誤。');
} else {
// check whether user exists or not
$dao = new UserDao();
$user = $dao->findByName(trim($username));
if ($user) {
$errors[] = new Error('username', '該用戶名已經被使用。');
}
$user = null;
// check whether email being used or not
$user = $dao->findByEmail(trim($email));
if ($user) {
$errors[] = new Error('email', '該郵箱已被注冊。');
}
}
return $errors;
}
}
?>
2、在注冊頁面進行調用
復制代碼 代碼如下:
$username = null;
$password = null;
$repeat_password = null;
$email = null;
$msg = "";
if (isset($_POST['username']) && isset($_POST['password'])
&& isset($_POST['repeat_password']) && isset($_POST['email'])) {
$username = addslashes(trim(stripslashes($_POST ['username'])));
$password = addslashes(trim(stripslashes($_POST ['password'])));
$repeat_password = addslashes(trim(stripslashes($_POST ['repeat_password'])));
$email = addslashes(trim(stripslashes($_POST ['email'])));
// validate
$errors = RegisterValidator::validate($username, $password, $repeat_password, $email);
// validate
if (empty($errors)) {
// save
$dao = new UserDao();
$user = new User();
$user->setEmail($email);
$last_login_ip = Utils::getIpAddress();
$user->setLastLoginIp($last_login_ip);
$user->setUsername($username);
$salt = substr(sha1(mt_rand()), 0, 22);
$hash_password = sha1($salt . $password);
$user->setPassword($hash_password);
$user->setSalt($salt);
$user = $dao->save($user);
if ($user) {
UserLogin::setUserInfo($user);
Flash::addFlash('注冊成功!');
}
else {
Flash::addFlash('對不起,由于服務器內部錯誤,導致注冊失敗。請稍后再試。');
}
Utils::redirect('welcome');
}
foreach ($errors as $e) {
$msg .= $e->getMessage()."<br>";
}
3.代碼中Error類用于記錄驗證時的錯誤信息
復制代碼 代碼如下:
<?php
/**
* Validation error.
*/
final class Error {
private $source;
private $message;
/**
* Create new error.
* @param mixed $source source of the error
* @param string $message error message
*/
function __construct($source, $message) {
$this->source = $source;
$this->message = $message;
}
/**
* Get source of the error.
* @return mixed source of the error
*/
public function getSource() {
return $this->source;
}
/**
* Get error message.
* @return string error message
*/
public function getMessage() {
return $this->message;
}
}
?>
感謝各位的閱讀,以上就是“php實現注冊時輸入信息驗證器”的內容了,經過本文的學習后,相信大家對php實現注冊時輸入信息驗證器這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。