/** * Unset an item from the array * * @param int $offset * @return void */ public function offsetUnset($offset) { apc_delete($this->getNamespace() . '-object_' . $offset); parent::offsetUnset($offset); }