本文整理匯總了PHP中Invitation::genEmailValidateCode方法的典型用法代碼示例。如果您正苦於以下問題:PHP Invitation::genEmailValidateCode方法的具體用法?PHP Invitation::genEmailValidateCode怎麽用?PHP Invitation::genEmailValidateCode使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Invitation
的用法示例。
在下文中一共展示了Invitation::genEmailValidateCode方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Securimage
if ($method == 'resend') {
//Captcha Validate
require_once PHP_BASE_DIR . "/securimage/securimage.php";
$img = new Securimage();
if ($img->check($captcha) == false) {
$res['message'] = '驗證碼錯誤!';
$res['action'] = 'resend';
} else {
$db = new MySQL($log);
if ($mysqli = $db->openDB()) {
$user = new User($mysqli, $log);
$invitation = new Invitation($mysqli, $log);
if ($user->getUserByMail($email)) {
if ($user->status == 2) {
$s_email = $email;
$email_code = $invitation->genEmailValidateCode($user->id);
$saemail = new SaeMail();
if ($saemail) {
//sea maill
$message = "尊敬的XSSRAT用戶 \r\n\t\t\t您好,歡迎您使用XSSRAT。XSSRAT是一個開放性的Web前端漏洞利用平台,您可以使用該平台進行一些Web前端漏洞的測試,並可以貢獻自己的模塊供其他用戶使用。\r\n\t\t\t本平台是一個開放性的平台,可用於滲透測試或漏洞挖掘過程中,以提高Web應用的安全性,本身不具有任何惡意性。請勿將該平台用於非法用途,否則後果自負!\r\n\t\t\t請訪問以下鏈接激活您的賬號:\t\t\t\t\t\r\n\t\t\thttp://xssrat.sinaapp.com/activating.php?code=" . $email_code . "&id=" . $user->id . "&method=active\t\r\n\t\t\r\n\t\t\thttp://xssrat.sinaapp.com\r\n\t\t\tMak3 hack m0r3 c00l!";
$ret = $saemail->quickSend($email, 'XSSRAT 用戶驗證', $message, MAIL_ACCOUNT, MAIL_PASS);
$reg_info = array('username' => htmlspecialchars($user->username, ENT_QUOTES), 'email' => htmlspecialchars($user->email, ENT_QUOTES));
$_SESSION["reg_info"] = $reg_info;
if ($ret) {
$res['result'] = true;
$res['message'] = '郵件已發出,請您及時查收,若您一直未收到,請稍後重新發送!';
$res['action'] = 'resend';
}
if ($ret === false) {
$log->error($mail->errmsg());
$res['message'] = '郵件發送失敗,請稍後重試!';
示例2: hash
$inv_id = $invitation->vilidateCode($invitation_code);
if ($inv_id) {
$user->username = $username;
$user->password = hash('sha256', $password_1);
$user->email = $email;
$user->type = 3;
//普通用戶
$user->b_send = 1;
//發送郵件
$user->status = 2;
//未激活狀態
$uid = $user->addUser();
if ($uid > 0) {
$invitation->setRegister($inv_id, $uid);
//生成郵件驗證碼
$val_code = $invitation->genEmailValidateCode($uid);
$reg_info = array('username' => htmlspecialchars($user->username, ENT_QUOTES), 'email' => htmlspecialchars($user->email, ENT_QUOTES), 'message' => '');
$saemail = new SaeMail();
if ($email) {
//sea maill
$saemail = new SaeMail();
$message = "尊敬的XSSRAT用戶 \r\n\t您好,歡迎您使用XSSRAT。XSSRAT是一個開放性的Web前端漏洞利用平台,您可以使用該平台進行一些Web前端漏洞的測試,並可以貢獻自己的模塊供其他用戶使用。\r\n\t本平台是一個開放性的平台,可用於滲透測試或漏洞挖掘過程中,以提高Web應用的安全性,本身不具有任何惡意性。請勿將該平台用於非法用途,否則後果自負!\r\n\t請訪問以下鏈接激活您的賬號:\t\t\t\t\t\r\n\thttp://xssrat.sinaapp.com/activating.php?code=" . $val_code . "&id=" . $uid . "&method=active\r\n\r\n\thttp://xssrat.sinaapp.com\r\n\tMak3 hack m0r3 c00l!";
$ret = $saemail->quickSend($email, 'XSSRAT 用戶驗證', $message, MAIL_ACCOUNT, MAIL_PASS);
if ($ret) {
$res['result'] = true;
$res['reason'] = '已注冊成功,請收取郵件以激活帳號!';
$reg_info['message'] = '已注冊成功,請收取郵件以激活帳號!';
}
if ($ret === false) {
$log->error($mail->errmsg());
$res['result'] = true;