Checks if any keys contains a certain value
string $value Value to search for:
mixed Returns the key if the value was found FALSE if the value was not found.
public function hasValue($value) { return array_search($value, $this->data); }