我有一个像下面这样的json数组,
{
"months": {
"1": ["1"],
"2": ["10"]
},
"days": {
"1": ["1", "2"],
"2": ["2", "3"]
}
}
我需要在php中解析这个。需要数月和数天的价值观。 提前谢谢..
答案 0 :(得分:-1)
为什么你不使用json_decode()函数?
$json = '{
"months": {
"1": ["1"],
"2": ["10"]
},
"days": {
"1": ["1", "2"],
"2": ["2", "3"]
}
}';
$decoded = json_decode($json);
var_dump($decoded);