Hi,
I have this array:
$a = array('it' => 'italiano',
'fr' => 'francese',
'en' => 'inglese',
'es' => 'spagnolo',
'de' => 'deutsch',
);
Is there any function that i give as arguments the array and a key (for example 'en') and it returns 'inglese'?
Regards
Javi