| 1 form.inc | _form_options_flatten($array) | 
Iterates over an array and returns a flat array with duplicate keys removed.
This function also handles cases where objects are passed as array values.
Related topics
File
- core/includes/ form.inc, line 2726 
- Functions for form and batch generation and processing.
Code
function _form_options_flatten($array) {
  $return = &backdrop_static(__FUNCTION__);
  foreach ($array as $key => $value) {
    if (is_object($value)) {
      _form_options_flatten($value->option);
    }
    elseif (is_array($value)) {
      _form_options_flatten($value);
    }
    else {
      $return[$key] = $value;
    }
  }
  return $return;
}
