我正在尝试将我创建的json文件中的特定键值对插入到mysql列中。
{
{
"status": true,
"message": "acc created successfully",
"data": [
{
"active": true,
"createdAt": "2019-03-01T09:23:09.000Z",
"boop": "nnn",
"description": "haha",
"domain": "test",
"email": null,
"lala": ooo,
"inter": lalla,
"metadata": null,
"name": "ram",
"int_code": "xxx-xxxx",
"type": "nub",
"updatedAt": "2019-03-02T00:44:45.000Z",
"is_deleted": false,
"details": {
"authorization_code": null,
"phone": "0118",
"other_name": null,
"loc": "008",
"bar": "crips"
}
}
],
"meta": {
"total": 1,
"skipped": 0,
"perPage": 50,
"page": 1,
"pageCount": 1
}
}
这是一个动态文件,每次我进行curl调用时都会更新。因此,每次我打电话时,上面看到的json响应都会更新到文件中。
我想获取int_code:"xxxx"
的键值对并将xxxx
存储在名为int_code
的mysql表列中,以便我可以用它来再次调用相同的api。
我希望每次打电话时,将int_code的值自动插入表中。
对不起,我英语不好。