PHP不遵循重定向

时间:2013-04-23 00:25:07

标签: php image http redirect

我使用的是PHP 5.2,我正在使用fopen()打开图片网址。但我遇到的一个问题是一些图像将我的服务器从直接图像链接重定向到图像页面(不是图像,在网页中显示图像)。

我尝试将max-redicts添加到fopen()但是当我这样检查时它不会打开网址

$opts = array(
   'http' => array(
   'max-redirects' => '0')
);

$context = stream_context_create($opts);

$file = fopen($url,"rb", false, $context);
if(!$file)
   die("Couldn't open URL");

0 个答案:

没有答案