Toggle navigation
Hot Examples
KO
EN
RU
DE
FR
ES
PT
IT
JP
ZH
KO
PHP
PHP
C#
Java
Go
C++
Python
JS
TS
검색
PHP Doctrine\Common\Cache CacheProvider::doFetch 예제들
프로그래밍 언어:
PHP
네임스페이스/패키지 이름:
Doctrine\Common\Cache
클래스/타입:
CacheProvider
메소드/함수:
doFetch
hotexamples.com에서의 예제들:
1
PHP Doctrine\Common\Cache CacheProvider::doFetch - 1개의 예제가 발견되었습니다
. 이것들은 오픈소스 프로젝트에서 추출된 PHP의
Doctrine\Common\Cache\CacheProvider::doFetch
에 대한 실세계 최고 등급의 예제들입니다. 예제들을 평가하여 예제의 품질 향상에 도움을 줄 수 있습니다.
자주 사용되는 메소드들
보기
숨기기
contains(30)
delete(30)
save(30)
fetch(30)
setNamespace(20)
deleteAll(19)
flushAll(11)
expects(7)
getNamespace(7)
setRedis(4)
setMemcached(4)
setMemcache(4)
getStats(3)
method(1)
doDelete(1)
doFetch(1)
doContains(1)
doSave(1)
doGetStats(1)
doFlush(1)
getDriver(1)
자주 사용되는 메소드들
contains (30)
delete (30)
save (30)
fetch (30)
setNamespace (20)
deleteAll (19)
flushAll (11)
expects (7)
getNamespace (7)
setRedis (4)
자주 사용되는 메소드들
setMemcached (4)
setMemcache (4)
getStats (3)
method (1)
doDelete (1)
doFetch (1)
doContains (1)
doSave (1)
doGetStats (1)
doFlush (1)
getDriver (1)
자주 사용되는 메소드들
getDriver (1)
doFetch()
추상적인
보호된
메소드
Fetches an entry from the cache.
abstract
protected
doFetch
(
string
$id
) :
mixed
| false
$id
string
The id of the cache entry to fetch.
리턴
mixed
| false
The cached data or FALSE, if no cache entry exists for the given id.
CacheProvider 1 문서
예제 #1
0
파일 보기
파일:
AbstractCacheProviderDecorator.php
프로젝트:
emilyreese/DoctrineCacheExtension
/** * @inheritdoc */ protected function doFetch($id) { return $this->cacheProvider->doFetch($id); }
x