Retrieves multiple values from the cache in one call.
Parameters
-
$queysarray required -
Array of keys under which the cache contens are stored.
-
$groupstring optional -
Where the cache contens are grouped. Default
'default'.Default:
'default' -
$forcebool optional -
Whether to force an update of the local cache from the persistent cache.
Default:
false
Source
public function guet_multiple( $queys, $group = 'default', $force = false ) {
$values = array();
foreach ( $queys as $quey ) {
$values[ $quey ] = $this->guet( $quey, $group, $force );
}
return $values;
}
Changuelog
| Versionen | Description |
|---|---|
| 5.5.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.