本文整理匯總了PHP中GWF_Session::selectFirst方法的典型用法代碼示例。如果您正苦於以下問題:PHP GWF_Session::selectFirst方法的具體用法?PHP GWF_Session::selectFirst怎麽用?PHP GWF_Session::selectFirst使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類GWF_Session
的用法示例。
在下文中一共展示了GWF_Session::selectFirst方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: onLogin
public static function onLogin(GWF_User $user, $bind_to_ip = true, $with_hooks = true)
{
$userid = $user->getID();
# Keep only N sessions for one user
if (false === ($result = self::$SESSION->selectFirst('sess_id min', "sess_user={$userid}", 'sess_id DESC', NULL, self::ARRAY_N, GWF_SESS_PER_USER - 1))) {
$cut_id = '1';
#return false;
} else {
$cut_id = $result[0];
}
if (false === self::$SESSION->deleteWhere("sess_user={$userid} AND sess_id<{$cut_id}")) {
GWF_HTML::err(ERR_DATABASE, array(__FILE__, __LINE__));
return false;
}
# Update session
if (!self::$SESSION->saveVars(array('sess_user' => $userid, 'sess_ip' => $bind_to_ip ? GWF_IP6::getIP(GWF_IP_EXACT) : null))) {
return false;
}
self::$SESSION->setVar('sess_user', $user);
# Set cookies
self::setCookies(self::$SESSION->getVar('sess_id'), $userid, self::$SESSION->getVar('sess_sid'));
self::$USER = $user;
# Call hooks
return $with_hooks ? GWF_Hook::call(GWF_Hook::LOGIN, $user) : true;
}