当前位置: 首页>>代码示例>>PHP>>正文


PHP kekezu::check_secode方法代码示例

本文整理汇总了PHP中kekezu::check_secode方法的典型用法代码示例。如果您正苦于以下问题:PHP kekezu::check_secode方法的具体用法?PHP kekezu::check_secode怎么用?PHP kekezu::check_secode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在kekezu的用法示例。


在下文中一共展示了kekezu::check_secode方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: keke_user_login_class

if (strtoupper(CHARSET) == 'GBK') {
    $arrOauthInfo = kekezu::utftogbk($arrOauthInfo);
}
$objLogin = new keke_user_login_class();
$arrBindInfo = keke_register_class::is_oauth_bind($type, $arrOauthInfo['account']);
if ($_SESSION[$type . '_oauthInfo'] && $arrBindInfo && !$is_binding) {
    $_SESSION[$type . '_oauthInfo'] = null;
    $arrUserInfo = kekezu::get_user_info($arrBindInfo['uid']);
    $loginUserInfo = $objLogin->oauth_user_login($arrUserInfo['username'], $arrUserInfo['password'], null, 1);
    $objLogin->save_user_info($loginUserInfo, 1);
}
$inter = $kekezu->_sys_config['user_intergration'];
$intLoginTimes = intval($_SESSION['login_times']);
if (kekezu::submitcheck(isset($formhash)) || isset($login_type) == 3) {
    if ($code) {
        $strCodeCheck = kekezu::check_secode($code);
        if ($strCodeCheck != 1) {
            $tips['errors']['code'] = $strCodeCheck;
            kekezu::show_msg($tips, NULL, NULL, NULL, 'error');
        }
    }
    $strCode = isset($code) ? $code : "";
    $intLoginType = isset($login_type) ? $login_type : "";
    $ckb_cookie = isset($ckb_cookie) ? $ckb_cookie : "";
    if (strtoupper(CHARSET) == 'GBK') {
        $account = kekezu::utftogbk($account);
    }
    $arrUserInfo = $objLogin->user_login($account, $password, $strCode, $intLoginType, 1);
    db_factory::execute("delete from " . TABLEPRE . "witkey_space where uid =" . intval($arrBindInfo['uid']));
    db_factory::execute("delete from " . TABLEPRE . "witkey_shop where uid=" . intval($arrBindInfo['uid']));
    db_factory::execute("delete from " . TABLEPRE . "witkey_member where uid=" . intval($arrBindInfo['uid']));
开发者ID:pengfeiaaa,项目名称:web,代码行数:31,代码来源:oauthlogin.php

示例2: strval

                 $tips['errors']['account'] = '账号不存在';
                 kekezu::show_msg($tips, NULL, NULL, NULL, 'error');
                 break;
             case 'email':
                 $arrUserInfo = keke_user_class::getUserInfoByEmail($account);
                 break;
             case 'username':
                 $arrUserInfo = keke_user_class::getUserInfoByUsername($account);
                 break;
         }
         if (!$arrUserInfo) {
             $tips['errors']['account'] = '账号不存在';
             kekezu::show_msg($tips, NULL, NULL, NULL, 'error');
         }
         if ($getPasswordCode) {
             $strCodeCheck = kekezu::check_secode($getPasswordCode);
             if ($strCodeCheck != 1) {
                 $tips['errors']['code'] = $strCodeCheck;
                 kekezu::show_msg($tips, NULL, NULL, NULL, 'error');
             }
         }
         kekezu::show_msg('', "index.php?do=retrieve&strStep=step2&account={$account}", NULL, NULL, 'ok');
     }
     break;
 case "step2":
     if (kekezu::submitcheck($formhash)) {
         $strAccount = strval($account);
         $arrUserInfo = kekezu::get_user_info($strAccount, true);
         $arrPassInfo = reset_set_password($arrUserInfo);
         $arrNotifyArr = array('用户名' => $arrUserInfo['username'], '网站名称' => $kekezu->_sys_config['website_name'], '密码' => $arrPassInfo['code'], '安全码' => $arrPassInfo['sec_code']);
         keke_shop_class::notify_user($arrUserInfo['uid'], $arrUserInfo['username'], 'get_password', '找回密码', $arrNotifyArr, 2);
开发者ID:huangbinzd,项目名称:kppwGit,代码行数:31,代码来源:retrieve.bak.php


注:本文中的kekezu::check_secode方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。