You are here

public function PhpBackend::getMultiple in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Cache/PhpBackend.php \Drupal\Core\Cache\PhpBackend::getMultiple()
  2. 9 core/lib/Drupal/Core/Cache/PhpBackend.php \Drupal\Core\Cache\PhpBackend::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;
}