gpt4 book ai didi

php - 获取正确的图片网址

转载 作者:可可西里 更新时间:2023-11-01 00:48:09 26 4
gpt4 key购买 nike

我在下面有这张图片链接:

http://ws.assoc-amazon.com/widgets/q?_encoding=UTF8&ASIN=B008EYEYBA&Format=_SL110_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=mytwitterpage-20 

但是如果你点击它并在浏览器中查看它,图像文件的实际url是这样的:

http://ecx.images-amazon.com/images/I/418lsVTc0aL._SL110_.jpg

知道如何使用 php 解析上面的图像链接以获取实际的 jpg 文件吗?

最佳答案

<?php

function get_url($url) {
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

curl_exec($ch);

if (!curl_errno($ch)) {
$url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
}

curl_close($ch);

return $url;
}

echo get_url("http://ws.assoc-amazon.com/widgets/q?_encoding=UTF8&ASIN=B008EYEYBA&Format=_SL110_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=mytwitterpage-20");

Source

关于php - 获取正确的图片网址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13530681/

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