PHP » GoLang |
login |
register |
about
|
GoLang CachingIterator::getCache
request it (541)
GoLang replacement for PHP's CachingIterator::getCache
[edit | history]
CachingIterator::getCache(PHP 5 >= 5.2.0, PHP 7) CachingIterator::getCache — Retrieve the contents of the cache Description
public array CachingIterator::getCache
( void
)
Retrieve the contents of the cache.
ParametersThis function has no parameters. Return ValuesAn array containing the cache items. Errors/Exceptions
Throws a BadMethodCallException when the
Examples
Example #1 CachingIterator::getCache() example
<?phpThe above example will output:
array(2) {
[0]=>
int(1)
[1]=>
int(2)
}
array(3) {
[0]=>
int(1)
[1]=>
int(2)
[2]=>
int(3)
}
|
more
Most requested
more
Last requests
|