我正在使用 API 从购物网站获取优惠,并收到以下 JSON 响应 -
{
"update_time": "2020-07-23 22:01:31",
"offers": [{
"products": [{
"title": "Product Name",
"endDate": "2020-07-24 03:55:01",
"url": "https://store.com/productid",
"offerPercent": 87,
"offerPrice": "12.74",
"id": "3cbfdc55",
"normalPrice": "99.99",
"reviewRating": 4.7428455,
"imageUrl": "https://store.com/productid/image",
"totalReviews": "1856"
}, { //This repeats alot of times
我尝试使用 PHP 来:
1 将数据检索到PHP中
2 循环遍历所有项目,存储所有参数,如url、title等。
3 将其与一些 html(如 div 标签)连接起来,例如:
$html = '';
$html = $html . '<div>Title' . $title .'</div>'; //Repeating this for each item?
这可能吗?如果可以,怎么做?你能指出我正确的方向吗?
编辑: 我使用 json_decode 将 json 转换为 php ($someArray json_decode($jsonlink, true);然后我用来foreach读取内容
foreach ($someArray as $key => $value) {
echo $value[1][1];
}
并且网页显示为空白。我究竟做错了什么。
神不在的星期二
慕尼黑5688855
FFIVE