當前位置: 首頁>>代碼示例>>PHP>>正文


PHP UserData::readUser方法代碼示例

本文整理匯總了PHP中UserData::readUser方法的典型用法代碼示例。如果您正苦於以下問題:PHP UserData::readUser方法的具體用法?PHP UserData::readUser怎麽用?PHP UserData::readUser使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在UserData的用法示例。


在下文中一共展示了UserData::readUser方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: elseif

} elseif ($srkEnv->reqURLLength == 2 && $srkEnv->reqURL[2] == 'github') {
    require_once $srkEnv->appPath . '/modules/thirdpartylogin/github.php';
    $loginRes = GithubLogin::fetchInfo();
    if ($loginRes) {
        srkRender('error', array('error' => array('status' => -1, 'stack' => $loginRes)));
    } else {
        header("Location: /");
    }
} elseif ($srkEnv->reqURLLength >= 2 && $srkEnv->reqURL[2] == 'query') {
    if ($srkEnv->reqURLLength == 3 && $srkEnv->reqURL[3] == 'whoami') {
        $userId = $_SESSION['userId'];
        if (!isset($userId)) {
            srkSend((object) array('error' => 'not logged in'));
        } else {
            srkSend((object) array('userId' => $userId));
        }
    } elseif ($srkEnv->reqURLLength == 4 && $srkEnv->reqURL[4] == 'avatarurl') {
        $user = new UserData();
        $user->readUser($srkEnv->reqURL[3]);
        if ($user->getField('source') == 'local') {
            $resURL = 'http://cn.gravatar.com/avatar/' . md5($user->getField('email')) . '?s=100&d=mm&r=g';
        } else {
            $resURL = $user->getField('avatarURL');
        }
        srkSend((object) array('url' => $resURL));
    } elseif ($srkEnv->reqURLLength == 4) {
        $user = new UserData();
        $user->readUser($srkEnv->reqURL[3]);
        srkSend((object) array('data' => $user->getField($srkEnv->reqURL[4])));
    }
}
開發者ID:laekov,項目名稱:shiruku,代碼行數:31,代碼來源:login.php

示例2: srkSend

    if ($srkEnv->reqURL[2] == 'query' && $srkEnv->reqMethod == 'POST') {
        if ($srkEnv->reqURLLength == 3 && ($srkEnv->reqURL[3] = 'recent')) {
            srkSend((object) array('list' => commentLoadRecent(8)));
        } elseif ($srkEnv->reqURLLength == 4 && ($srkEnv->reqURL[3] = 'pen')) {
            $penId = $srkEnv->reqURL[4];
            $retList = commentLoadAll($penId);
            srkSend((object) array('list' => $retList));
        } elseif ($srkEnv->reqURLLength == 5 && $srkEnv->reqURL[3] == 'content') {
            $penId = $srkEnv->reqURL[4];
            $commentId = $srkEnv->reqURL[5];
            $contentFileName = $srkEnv->penPath . '/' . $penId . '/comment/' . $commentId . '/content.html';
            srkSend((object) array('content' => commentLoadContent($penId, $commentId), 'commentId' => $commentId));
        }
    } elseif ($srkEnv->reqURLLength == 2 && $srkEnv->reqURL[2] == 'post' && $srkEnv->reqMethod == 'POST') {
        $user = new UserData();
        $user->readUser($_SESSION['userId']);
        if ($user->status != 'normal') {
            srkSend((object) array('error' => 'Please log in first'));
        } else {
            if ($err = commentPost($user)) {
                if (is_string($err)) {
                    srkSend((object) array('error' => $err));
                } else {
                    srkSend((object) array('error' => "System error"));
                }
            } else {
                srkSend((object) array('error' => false));
            }
        }
    }
}
開發者ID:laekov,項目名稱:shiruku,代碼行數:31,代碼來源:comment.php


注:本文中的UserData::readUser方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。