gpt4 book ai didi

PHP : Fastest way to load images through a proxy

转载 作者:太空宇宙 更新时间:2023-11-03 13:45:14 24 4
gpt4 key购买 nike

我正在从非 SSL 来源加载一些图像。为了不破坏我的 SSL 证书,我必须通过这个简单的 PHP 代理页面加载它们:

<?php
header('Content-Type: image/png');
if(isset($_GET['url'])){echo file_get_contents($_GET['url']);}
?>

这可行,但不幸的是我的加载时间很慢。 有人知道代理图像的更快方法吗?

谢谢大家!

最佳答案

你可以看看 X-Sendfile,它会像这样工作:

 $file = '/path/to/images/' . $_GET['url'];
header('X-Sendfile: ' . $file);

但 Apache 将自行处理该过程,而不是 PHP 的开销。

http://codeutopia.net/blog/2009/03/06/sending-files-better-apache-mod_xsendfile-and-php/

http://www.jasny.net/articles/how-i-php-x-sendfile/

关于PHP : Fastest way to load images through a proxy,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6581639/

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