當前位置: 首頁>>代碼示例>>PHP>>正文


PHP cache::cache方法代碼示例

本文整理匯總了PHP中cache::cache方法的典型用法代碼示例。如果您正苦於以下問題:PHP cache::cache方法的具體用法?PHP cache::cache怎麽用?PHP cache::cache使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在cache的用法示例。


在下文中一共展示了cache::cache方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: clear

 /**
  * Clears the cache for the specified function or the entire cache if a
  * function is not specified.
  * 
  * @param string $funcName
  *   The function name to clear from the cache.
  */
 public static function clear($funcName = null)
 {
     if ($funcName === null) {
         self::$cache = array();
     }
     if (array_key_exists($funcName, self::$cache)) {
         unset(self::$cache[$funcName]);
     }
 }
開發者ID:Borvik,項目名稱:Munla,代碼行數:16,代碼來源:cache.php

示例2: setCache

 public static function setCache($bool)
 {
     self::$cache = (bool) $bool;
 }
開發者ID:DINKIN,項目名稱:rokket,代碼行數:4,代碼來源:cache.php

示例3:

 function cache_parser($id, $file, $mode)
 {
     if ($id) {
         $this->page = $id;
     }
     $this->file = $file;
     $this->mode = $mode;
     parent::cache($file . $_SERVER['HTTP_HOST'] . $_SERVER['SERVER_PORT'], '.' . $mode);
 }
開發者ID:pyfun,項目名稱:dokuwiki,代碼行數:9,代碼來源:cache.php

示例4: initRedis

 private static function initRedis()
 {
     self::$cache = new Redis();
     self::$cache->connect(self::$redisServer, self::$redisPort);
     self::$cacheType = 'redis';
 }
開發者ID:highestgoodlikewater,項目名稱:spider-3,代碼行數:6,代碼來源:cache.class.php

示例5: cache_ghissues_api

 public function cache_ghissues_api($requestURL)
 {
     parent::cache($requestURL, '.ghissues');
     $this->etag = substr($this->cache, 0, -9) . '.etag';
 }
開發者ID:xifroon,項目名稱:ghissues,代碼行數:5,代碼來源:apiCacheInterface.php


注:本文中的cache::cache方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。