php处理json数据(从服务器获取,post提交)

1,'b'=>2));
 list($returncode,$returncontent)=http_post_json($url,$jsonstr);
 echo $returncode
 echo $returncontent
?>


/*
	php从服务器获得json数据
*/
int(1)
   ["b"]=>int(2)) */
   $resp=json_decode($resp,true);
   var_dump($resp);
   echo $resp['a'];

?>

你可能感兴趣的:(PHP,php,服务器,json,数据)