how to use a json in php code example
Example 1: 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
Example 2: access json with php
<?php
$data = '{
"name": "Aragorn",
"race": "Human"
}';
$character = json_decode($data);
echo $character->name;