I have the following array
$headers = array(
'en' => 'English Bla Bla',
'fr' => 'something else',
'de' => 'more stuff'
);
|
I want to merge the headers field but ONLY display the first item in the array.
How would I do this no matter what the country code is, because in some cases there might be no 'en' header or the languages might be sorted differently.
Thanks