lithium\util\Collection::offsetExists()
Checks whether or not an offset exists.
Parameters
-
string
$offset
An offset to check for.
Returns
booleantrue
if offset exists, false
otherwise.
Source
public function offsetExists($offset) {
return array_key_exists($offset, $this->_data);
}