The results are in! Meet the top members of our 2017 Expert Awards. Congratulations to all who qualified!
Are you are experiencing a similar issue? Get a personalized answer when you ask a related question.
Have a better answer? Share it in a comment.
The data structure itself looks like a URL-encoded string enclosed in curly { } braces. I would normally decode it like this:
$response = "{ .... that response data .... }";
parse_str(urldecode(trim(t
// Now $parsed_response should be an array...
print_r($parsed_response);