(PECL memcached >= 0.1.0)
Memcached::fetchAll — Fetch all the remaining results
public Memcached::fetchAll ( ) : array|false
Memcached::fetchAll() retrieves all the remaining results from the last request.
This function has no parameters.
Returns the results or false
on failure. Use Memcached::getResultCode() if necessary.
Example #1 Memcached::getDelayed() example
<?php $m = new Memcached(); $m->addServer('localhost', 11211); $m->set('int', 99); $m->set('string', 'a simple string'); $m->set('array', array(11, 12)); $m->getDelayed(array('int', 'array'), true); var_dump($m->fetchAll()); ?>
The above example will output:
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/memcached.fetchall.php