Extends
lithium\core\Object
Checks whether or not an offset exists.
Parameters
- string $offset An offset to check for.
Returns
boolean `true` if offset exists, `false` otherwise.Source
public function offsetExists($offset) {
return isset($this->_data[$offset]);
}