$variable)) { if (isset($array_element)) { $array = $this->$variable; if (isset($array[$array_element])) { return $array[$array_element]; } } else { return $this->$variable; } } return false; } public function set($variable, $value) { $this->$$variable = $value; } } ?>