I want to create a multicolumn array from a string where the spearator for the first level array is ";" and for the second level array is ","
This string is given:
$string = ("de,text1,text2,text3;en,text1,text2,text3;pl,text1,text2,text3")
This is the structure of the array that i want as result:
Array
(
array([de] => text1, text2, text3),
array([en] => text1, text2, text3),
array([pl] => text1, text2, text3),
)