public function DrupalCacheArray::__destruct

Destructs the DrupalCacheArray object.

File

drupal/includes/bootstrap.inc, line 452
Functions that need to be loaded on every Drupal request.

Class

DrupalCacheArray
Provides a caching wrapper to be used in place of large array structures.

Code

public function __destruct() {
  $data = array();
  foreach ($this->keysToPersist as $offset => $persist) {
    if ($persist) {
      $data[$offset] = $this->storage[$offset];
    }
  }
  if (!empty($data)) {
    $this
      ->set($data);
  }
}