コード例 #1
0
ファイル: CacheMapper.php プロジェクト: sitesupra/sitesupra
 protected function getContextKey(ResponseContext $context = null)
 {
     if (!$context) {
         return 'no_context';
     }
     $cacheParts = array();
     $values = $context->getAllValues();
     ksort($values);
     foreach ($values as $value) {
         $cacheParts[] = $value;
     }
     return implode('_', $cacheParts);
 }