是否可以从此链接中提取“image_url”的值
http://theapache64.xyz:8080/gpix/v1/gpix?keyword=honda%20civic%202009&limit=1
并使用php显示为<img src="">
答案 0 :(得分:1)
您可以从json获取数据,如下所示
<?php
$content = file_get_contents('http://theapache64.xyz:8080/gpix/v1/gpix?keyword=honda%20civic%202009&limit=1');
$arr = json_decode($content,true);
$url = $arr['data']['images'][0]['image_url'];
echo "<img src='".$url."'>";
?>
答案 1 :(得分:0)
谢谢大家,我找到了解决方案。
我也会在这里发布我的解决方案以防其他人遇到同样的问题
<?php
$json_file = file_get_contents('http://theapache64.xyz:8080/gpix/v1/gpix?keyword='.$combineurl.'&limit=1');
$jfo = json_decode($json_file);
$posts = $jfo->data->images;
foreach ($posts as $post) {
?>
<img src="<?php echo $post->image_url; ?>" alt="" width="500">
<?php
}
?>