本文整理汇总了PHP中zend_disk_cache_fetch函数的典型用法代码示例。如果您正苦于以下问题:PHP zend_disk_cache_fetch函数的具体用法?PHP zend_disk_cache_fetch怎么用?PHP zend_disk_cache_fetch使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了zend_disk_cache_fetch函数的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: driverRead
/**
* @param \Psr\Cache\CacheItemInterface $item
* @return mixed
*/
protected function driverRead(CacheItemInterface $item)
{
$data = zend_disk_cache_fetch($item->getKey());
if ($data === false) {
return null;
}
return $data;
}
开发者ID:jigoshop,项目名称:Jigoshop2,代码行数:12,代码来源:Driver.php
示例2: _get
protected function _get($key)
{
$data = zend_disk_cache_fetch($this->key($key));
if ($data === null) {
return self::NOT_FOUND;
}
return $data;
}
开发者ID:liulingfu,项目名称:madserve,代码行数:8,代码来源:ZendDisk.php
示例3: zdcFetchMulti
/**
* Fetch multiple items from Zend Data Disk Cache
*
* @param array $internalKeys
* @return array All found items
* @throws Exception\RuntimeException
*/
protected function zdcFetchMulti(array $internalKeys)
{
$items = zend_disk_cache_fetch($internalKeys);
if ($items === false) {
throw new Exception\RuntimeException("zend_disk_cache_fetch(<array>) failed");
}
return $items;
}
开发者ID:idwsdta,项目名称:INIT-frame,代码行数:15,代码来源:ZendServerDisk.php
示例4: _fetch
/**
* Fetch data
*
* @param string $id Cache id
*/
protected function _fetch($id)
{
return zend_disk_cache_fetch($this->_options['namespace'] . '::' . $id);
}
开发者ID:rexmac,项目名称:zf2,代码行数:9,代码来源:Disk.php
示例5: has
/**
* {@inheritdoc}
*/
public function has($key)
{
return zend_disk_cache_fetch($key) !== false;
}
开发者ID:muhammetardayildiz,项目名称:framework,代码行数:7,代码来源:ZendMemory.php
示例6: get
/**
* Get a cache variable
*
* Retrieve a variable from the cache and return it's
* value to the user.
*
* @param string $name The name of the cache variable to retrieve.
*
* @return mixed The value of the retrieved variable or false if
* variable isn't found.
*/
public function get($name)
{
return zend_disk_cache_fetch($name);
}
开发者ID:crlang44,项目名称:frapi,代码行数:15,代码来源:Zenddisk.php
示例7: get
public function get($key)
{
$safeKey = $this->makeKey($key);
$ret = @zend_disk_cache_fetch($safeKey);
return $ret;
}
开发者ID:chrismcmacken,项目名称:phptools,代码行数:6,代码来源:Disk.php
示例8: get
/**
* {@inheritdoc}
*/
public function get($key)
{
return zend_disk_cache_fetch($key);
}
开发者ID:muhammetardayildiz,项目名称:framework,代码行数:7,代码来源:ZendDisk.php
示例9: read
/**
* Read datas with $uid key
* @param mixed $uid
* @return mixed
*/
public function read($uid)
{
return zend_disk_cache_fetch($uid);
}
开发者ID:cityware,项目名称:city-shared-memory,代码行数:9,代码来源:ZendDiskCache.php
注:本文中的zend_disk_cache_fetch函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论