gpt4 book ai didi

php - 如何在 PHP 中处理 JSON?

转载 作者:可可西里 更新时间:2023-11-01 13:37:58 24 4
gpt4 key购买 nike

这是异步发送到我的 php 页面的 JSON。它本质上是一个产品列表,将被插入到我的 mySQL 数据库中。

我的问题是用 PHP 解码 JSON。我可以在 js 中使用“eval”函数很好地完成这项工作,但在 PHP 中,我的努力导致了一系列复杂的爆炸和内爆函数。

{
"Product": [
{
"Product_Title": "Cloth",
"Product_Description": "Here is cloth",
"Price": "100",
"Category_ID": "1"
},
{
"Product_Title": "Cloth",
"Product_Description": "Here is cloth",
"Price": "100",
"Category_ID": "1"
},
{
"Product_Title": "Cloth",
"Product_Description": "Here is cloth",
"Price": "100",
"Category_ID": "1"
}
]
}

我知道 php 有一个内置的 json_decode 函数,但在 PHP 文档中他们只展示了如何处理数组。

非常感谢任何建议或帮助

泰勒

最佳答案

如果您调用 json_decode($data,true);,您的数据将是:

Array(
"Product"=>Array(
Array(
"Product_Title"=>"Cloth",
"Product_Description"=>"Here is cloth",
"Price"=>"100",
"Category_ID"=>"1"
),
Array(
.............
)
)
);

这有什么问题吗?

关于php - 如何在 PHP 中处理 JSON?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9138625/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com