本文整理匯總了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]);
}
}
示例2: setCache
public static function setCache($bool)
{
self::$cache = (bool) $bool;
}
示例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);
}
示例4: initRedis
private static function initRedis()
{
self::$cache = new Redis();
self::$cache->connect(self::$redisServer, self::$redisPort);
self::$cacheType = 'redis';
}
示例5: cache_ghissues_api
public function cache_ghissues_api($requestURL)
{
parent::cache($requestURL, '.ghissues');
$this->etag = substr($this->cache, 0, -9) . '.etag';
}