本文整理汇总了PHP中SessionCache::set方法的典型用法代码示例。如果您正苦于以下问题:PHP SessionCache::set方法的具体用法?PHP SessionCache::set怎么用?PHP SessionCache::set使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SessionCache
的用法示例。
在下文中一共展示了SessionCache::set方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: verifySignatureFirebase
private static function verifySignatureFirebase($jwt)
{
$jwtCertsJSON = SessionCache::get(self::$JWT_CERTS_CACHE_KEY);
if ($jwtCertsJSON === FALSE) {
$jwtCertsJSON = HttpUtil::processRequest('https://www.googleapis.com/oauth2/v1/certs');
SessionCache::set(self::$JWT_CERTS_CACHE_KEY, $jwtCertsJSON);
}
$jwtCerts = json_decode($jwtCertsJSON, TRUE);
return JWT::decode($jwt, $jwtCerts);
}
示例2: getAccountIdByName
private function getAccountIdByName($accountName)
{
$accountIdCacheKey = array('id' => 'ACCOUND_ID_FOR_' . strtolower($accountName), 'exp' => 3600);
// 1 hour
$accountId = SessionCache::get($accountIdCacheKey);
if ($accountId == NULL) {
$accountId = $this->getAccountIdByNameFromDB($accountName);
SessionCache::set($accountIdCacheKey, $accountId);
}
return $accountId;
}
示例3: getOpenIDConfig
private static function getOpenIDConfig($key)
{
$openIDConfigJSON = SessionCache::get(self::$OPENID_CONFIG_CACHE_KEY);
if ($openIDConfigJSON == FALSE) {
$openIDConfigJSON = HttpUtil::processRequest(self::OPENID_CONFIG_URL_KEY);
SessionCache::set(self::$OPENID_CONFIG_CACHE_KEY, $openIDConfigJSON);
}
$openIDConfig = json_decode($openIDConfigJSON, TRUE);
return $openIDConfig[$key];
}
示例4: setGlobal
/**
* Define ou adicionar um valor na sessao Global.
*
* @param string $key
* @param mixed $valor
*/
public function setGlobal($key, $valor)
{
SessionCache::set($this->globalKey($key), $valor);
}