public function DrupalCacheArray::__destruct

7.x bootstrap.inc public DrupalCacheArray::__destruct()

Destructs the DrupalCacheArray object.

File

drupal-7.x/includes/bootstrap.inc, line 438
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);
  }
}