本文整理汇总了PHP中TYPO3\Flow\Cache\Frontend\VariableFrontend::getByTag方法的典型用法代码示例。如果您正苦于以下问题:PHP VariableFrontend::getByTag方法的具体用法?PHP VariableFrontend::getByTag怎么用?PHP VariableFrontend::getByTag使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TYPO3\Flow\Cache\Frontend\VariableFrontend
的用法示例。
在下文中一共展示了VariableFrontend::getByTag方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getSessionsByTag
/**
* Returns all sessions which are tagged by the specified tag.
*
* @param string $tag A valid Cache Frontend tag
* @return array A collection of Session objects or an empty array if tag did not match
* @api
*/
public function getSessionsByTag($tag)
{
$taggedSessions = array();
foreach ($this->metaDataCache->getByTag(Session::TAG_PREFIX . $tag) as $sessionIdentifier => $sessionInfo) {
$session = new Session($sessionIdentifier, $sessionInfo['storageIdentifier'], $sessionInfo['lastActivityTimestamp'], $sessionInfo['tags']);
$taggedSessions[] = $session;
}
return $taggedSessions;
}