SyntaxFix
Write A Post
Hire A Developer
Questions
Use json_decode to transform your JSON into a PHP array. Example:
$json = '{"a":"b"}'; $array = json_decode($json, true); echo $array['a']; // b