Skip to content

Instantly share code, notes, and snippets.

@vibhasbhingarde
Last active August 29, 2015 14:02
Show Gist options
  • Save vibhasbhingarde/217f003c87d376b42c16 to your computer and use it in GitHub Desktop.
Save vibhasbhingarde/217f003c87d376b42c16 to your computer and use it in GitHub Desktop.
Convert Single key array to dropdown array
function GetSingularValuesArray($arr)
{
$result=array();
foreach($arr as $key=>$value):
$temp=key($value);
$result[]=is_object($value)?$value->$temp:$value[$temp];
endforeach;
return $result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment