1.data.json文件
{
"goods":[
{
"type":1,
"name":"wow精选",
"product":[
{
"id":98,
"name":"真皮大衣",
"title":"单桶原酿酒 威士忌 新春礼盒 限量独家",
"titleDesc":"苏格兰麦芽糖,中国定制版",
"price":1298.00
},
{
"id":99,
"name":"品牌内衣",
"title":"单桶原酿酒 威士忌 新春礼盒 限量独家222",
"titleDesc":"苏格兰麦芽糖,中国定制版222",
"price":1298.00
}
]
},
{
"type":2,
"name":"特惠商品",
"product":[]
}
]
}
2.php文件
// 从文件中读取数据到PHP变量
$json_string = file_get_contents('static/json/shield.json');
// 用参数true把JSON字符串强制转成PHP数组
$data = json_decode($json_string, true);
372

被折叠的 条评论
为什么被折叠?



