コード例 #1
0
ファイル: ZCache.php プロジェクト: kimthangatm/zcms
 /**
  * Checks if cache exists and it isn't expired
  *
  * @param string $keyName
  * @param integer $lifetime
  * @return boolean
  */
 public function exists($keyName = null, $lifetime = null)
 {
     return $this->cache->exists($keyName, $lifetime);
 }