本文整理汇总了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';
}