我有一个 url 传递参数使用 json_encode 每个值,如下所示:
$json = array
(
'countryId' => $_GET['CountryId'],
'productId' => $_GET['ProductId'],
'status' => $_GET['ProductId'],
'opId' => $_GET['OpId']
);
echo json_encode($json);
它返回的结果如下:
{
"countryId":"84",
"productId":"1",
"status":"0",
"opId":"134"
}
我可以json_decode
用来解析每个值以进行进一步的数据处理吗?
谢谢。