I know this is a basic question but I can't find it or even thing what it might be called.
But is there a function to easily decode strings with multiple vars like this?
$vars = 'status=true&stackoverflow=great&apple=red&orange=orange';
How would I get the value of "apple" with a function?
Something like echo '$vars.apple';
etc...