I have a string that when I var_dump returns the following
string(20) \"{\\\"key1\\\":\\\"key1_value\",\\\"key2\\\":\\\"key2_value\\\"}\"
How c
explode(',\\',$string);
should do the trick.