I have this string: test1__test2__test3__test4__test5__test6=value
There could be any number of test-keys.
I want to write a function that can turn the string above into an array
$data[test1][test2][test3][test4][test5][test6] = "value";
Is this possible?