本文整理汇总了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';
}