I would like to create a PHP array from the Serbian alphabet.
Out of
а б в г д ђ е ж з и ј к л љ м н њ о п р с т ћ у ф х ц ч џ ш
a b c č ć d dž đ e f g h i j k l lj m n nj o p r s š t u v z ž
should become this (a custom array):
'а': 'a',
'б': 'b',
'в': 'c',
'г': 'č',
'д': 'ć',
How can I do this with awk or sed?