function PhpBackend::getMultiple

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Cache/PhpBackend.php \Drupal\Core\Cache\PhpBackend::getMultiple()
  2. 10 core/lib/Drupal/Core/Cache/PhpBackend.php \Drupal\Core\Cache\PhpBackend::getMultiple()
  3. 11.x core/lib/Drupal/Core/Cache/PhpBackend.php \Drupal\Core\Cache\PhpBackend::getMultiple()

Overrides CacheBackendInterface::getMultiple

File

core/lib/Drupal/Core/Cache/PhpBackend.php, line 94

Class

PhpBackend
Defines a PHP cache implementation.

Namespace

Drupal\Core\Cache

Code

public function getMultiple(&$cids, $allow_invalid = FALSE) {
    $ret = [];
    foreach ($cids as $cid) {
        if ($item = $this->get($cid, $allow_invalid)) {
            $ret[$item->cid] = $item;
        }
    }
    $cids = array_diff($cids, array_keys($ret));
    return $ret;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.