Если вы имеете в виду, что вам нужно что-то, что превращает JSON в переменную или объект PHP, я думаю, этот код объяснит это:
Код:
<?
// here is an array
$myarray = array(
'animal' => 'dog',
'plant' => 'tree',
'anotherArray' => array ('some' => 'data'),
);
// print out the array to show what it looks like
print_r($myarray);
// convert the array to json
$jsonArray = json_encode($myarray);
// print out the json data
print $jsonArray.'\n';
// convert the json data back into a PHP array
$phpArray = json_decode($jsonArray);
// print out the array that went from PHP to JSON, and back to PHP again
print_r($phpArray);
Выход:
Array
(
[animal] => dog
[plant] => tree
[anotherArray] => Array
(
[some] => data
)
)
{"animal":"dog","plant":"tree","anotherArray":{"some":"data"}}
stdClass Object
(
[animal] => dog
[plant] => tree
[anotherArray] => stdClass Object
(
[some] => data
)
)