function PhpBackend::invalidateMultiple
Same name in other branches
- 9 core/lib/Drupal/Core/Cache/PhpBackend.php \Drupal\Core\Cache\PhpBackend::invalidateMultiple()
- 8.9.x core/lib/Drupal/Core/Cache/PhpBackend.php \Drupal\Core\Cache\PhpBackend::invalidateMultiple()
- 11.x core/lib/Drupal/Core/Cache/PhpBackend.php \Drupal\Core\Cache\PhpBackend::invalidateMultiple()
Overrides CacheBackendInterface::invalidateMultiple
File
-
core/
lib/ Drupal/ Core/ Cache/ PhpBackend.php, line 219
Class
- PhpBackend
- Defines a PHP cache implementation.
Namespace
Drupal\Core\CacheCode
public function invalidateMultiple(array $cids) {
foreach ($cids as $cid) {
$this->invalidate($cid);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.