$php_json = json_encode($json_arr);
echo $php_json;
$php_json = json_decode($php_json);
print_r($php_json);
-------------------------------------------------------------------------
json数组
$json = '[{"id":"22","name":"33","descn":"44"}]';
$arr = (Array)json_decode($json);