作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
这是异步发送到我的 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/
我是一名优秀的程序员,十分优秀!