本文整理匯總了PHP中Invitation::validateEmailCode方法的典型用法代碼示例。如果您正苦於以下問題:PHP Invitation::validateEmailCode方法的具體用法?PHP Invitation::validateEmailCode怎麽用?PHP Invitation::validateEmailCode使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Invitation
的用法示例。
在下文中一共展示了Invitation::validateEmailCode方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: MySQL
$email = $_POST['email'];
$captcha = $_POST['captcha'];
$code = $code ? $code : "";
$id = $id ? $id : 0;
$method = $method ? $method : '';
$email = $email ? $email : '';
$captcha = $captcha ? $captcha : '';
if ($method == 'active') {
$db = new MySQL($log);
if ($mysqli = $db->openDB()) {
$user = new User($mysqli, $log);
$invitation = new Invitation($mysqli, $log);
if ($user->getUserByID($id)) {
if ($user->status == 2) {
$s_email = $user->email;
$v_res = $invitation->validateEmailCode($code, $id);
if ($v_res['result']) {
$user->status = 1;
if ($user->updateUser($id)) {
$res['result'] = true;
$res['message'] = '恭喜您,用戶已激活成功';
$res['action'] = 'login';
}
} else {
$res['message'] = $v_res['reason'];
$res['action'] = 'resend';
}
} else {
$res['message'] = '用戶已被激活或已禁用!';
$res['action'] = 'resend';
}