gpt4 book ai didi

php - img http 引用

转载 作者:可可西里 更新时间:2023-11-01 17:03:56 25 4
gpt4 key购买 nike

当使用任何主流浏览器打开图像(通过 <img> 标签)时,将发送 HTTP referer header 。我正在尝试将 src 属性设置为某些 https://url(有效证书,希望从安全页面转到不安全页面将使引荐来源网址空白)然后重定向到目标页面(通过 Location header )和其他一些“方法” ,似乎没有任何效果……请问有什么想法吗?

最佳答案

如果我理解,这可以解决问题:

$opts = array('http' =>
array(
'method' => 'GET',
'header' => 'Referer: http://example.com',
)
);

$context = stream_context_create($opts);

header('Content-Type: image/vnd.microsoft.icon');
echo file_get_contents($_GET['image_src'], false, $context);

然后在 HTML 中:

<img src="/path/to/file.php?image_src=http://www.google.com/favicon.ico" alt="">

希望对您有所帮助。

关于php - img http 引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5244064/

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