本文整理匯總了PHP中Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getTokenFromCache方法的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getTokenFromCache方法的具體用法?PHP Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getTokenFromCache怎麽用?PHP Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getTokenFromCache使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Zend_Service_DeveloperGarden_SecurityTokenServer_Cache
的用法示例。
在下文中一共展示了Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getTokenFromCache方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getTokens
/**
* returns the fetched token from token server
*
* @return Zend_Service_DeveloperGarden_Response_SecurityTokenServer_GetTokensResponse
*/
public function getTokens()
{
$token = Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getTokenFromCache('getTokens');
if ($token === null || !$token->isValid()) {
$token = $this->getSoapClient()->getTokens(array('serviceId' => $this->_serviceAuthId));
Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::setTokenToCache('getTokens', $token);
}
return $token;
}
示例2: testTokenCacheGetTokenFromCacheWithZendCacheAndCacheHit
public function testTokenCacheGetTokenFromCacheWithZendCacheAndCacheHit()
{
$tokensAr = array('securityToken', 'getTokens');
$cache = Zend_Cache::factory('Core', 'File', array('automatic_serialization' => true), array());
$this->assertNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::setCache($cache));
$this->assertType('Zend_Cache_Core', Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getCache());
Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::resetTokenCache();
Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::clearCache();
$tokens = $this->service->getTokens();
$this->assertType('Zend_Service_DeveloperGarden_Response_SecurityTokenServer_GetTokensResponse', $tokens);
$this->assertType('Zend_Service_DeveloperGarden_Response_SecurityTokenServer_SecurityTokenResponse', $tokens->securityToken);
$this->assertNotNull('Zend_Service_DeveloperGarden_Response_SecurityTokenServer_SecurityTokenResponse', $tokens->getSecurityToken());
foreach ($tokensAr as $v) {
$this->assertNotNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getTokenFromCache($v));
$this->assertNotNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getTokenFromCache($v));
}
}
示例3: testTokenCacheGetTokenFromCacheWithZendCache
public function testTokenCacheGetTokenFromCacheWithZendCache()
{
$tokens = array('securityToken', 'getTokens');
// require_once 'Zend/Cache.php';
$cache = Zend_Cache::factory('Core', 'File', array(), array());
$this->assertNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::setCache($cache));
$this->assertType('Zend_Cache_Core', Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getCache());
Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::resetTokenCache();
Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::clearCache();
foreach ($tokens as $v) {
$this->assertNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getTokenFromCache($v));
}
}
示例4: testTokenCacheGetTokenFromCacheWithZendCache
public function testTokenCacheGetTokenFromCacheWithZendCache()
{
$tokens = array('securityToken', 'getTokens');
$cache = Zend\Cache\Cache::factory('Core', 'File', array(), array());
$this->assertNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::setCache($cache));
$this->assertInstanceOf('Zend\\Cache\\Frontend\\Core', Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getCache());
Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::resetTokenCache();
Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::clearCache();
foreach ($tokens as $v) {
$this->assertNull(Zend_Service_DeveloperGarden_SecurityTokenServer_Cache::getTokenFromCache($v));
}
}