本文整理匯總了PHP中Auth_OpenID_getSessionTypes函數的典型用法代碼示例。如果您正苦於以下問題:PHP Auth_OpenID_getSessionTypes函數的具體用法?PHP Auth_OpenID_getSessionTypes怎麽用?PHP Auth_OpenID_getSessionTypes使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了Auth_OpenID_getSessionTypes函數的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: isAllowed
function isAllowed($assoc_type, $session_type)
{
$assoc_good = in_array(array($assoc_type, $session_type), $this->allowed_types);
$matches = in_array($session_type, Auth_OpenID_getSessionTypes($assoc_type));
return $assoc_good && $matches;
}
示例2: testAddAllowedTypeContents
function testAddAllowedTypeContents()
{
$assoc_type = 'HMAC-SHA1';
$this->assertTrue($this->n->addAllowedType($assoc_type));
foreach (Auth_OpenID_getSessionTypes($assoc_type) as $typ) {
$this->assertTrue(in_array(array($assoc_type, $typ), $this->n->allowed_types));
}
}