php json string type code example
Example 1: php json encode
$person = array(
"name" => "Johny Carson",
"title" => "CTO"
);
$personJSON=json_encode($person);//returns JSON string
Example 2: parse json phph
echo json_decode("[1,2,3]")[0];