コード例 #1
0
ファイル: Cache.php プロジェクト: jponsen/smvc-cache
 /**
  * Check if there is any cached data for given key
  *
  * @param string $key cache identifier
  *
  * @return mixed
  */
 public function cacheExists($key = '')
 {
     return $this->_cache->isExisting($key);
 }