Answers for "json to php associative array"

PHP
15

json php

//Json Encode

$person = array( 
    "name" => "KINGASV", 
    "title" => "CTO"
); 
$personJSON=json_encode($person);//returns JSON string

//Json Decode

$personJSON = '{"name":"KINGASV","title":"CTO"}';

$person = json_decode($personJSON);

echo $person->name; // KINGASV
Posted by: Guest on July-16-2020
0

php json string to associative array

$assocArray = json_decode($data, true);
Posted by: Guest on January-20-2021

Code answers related to "json to php associative array"

Browse Popular Code Answers by Language