I am getting the response from one of the API calls something like this :
{status: 'true',description: '0617971781'}
I would like to convert into an associative array with ´status´ and ´description´ being the key elements.
I tried the following explode :
explode($str, ",")
But, I am not able to figure out how, still, Is there a quicker way to do it ?
Thanks