DrupalCacheArray::offsetExists

7 bootstrap.inc public DrupalCacheArray::offsetExists($offset)

Implements ArrayAccess::offsetExists().

File

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

Code

public function offsetExists($offset) {
  return $this->offsetGet($offset) !== NULL;
}
Login or register to post comments