We have a piece of legacy code that (ab)uses fopen() calls to resources over HTTP: @fopen('http://example.com').

We want to move example.com to another host and then send 301 Permanently Moved. However, we are not entirely sure if @fopen() will follow this. Initial tests show me that it does not. But maybe I miss some configuration piece.

link|improve this question

1  
I foresee refactoring in your future! – Stephen Jul 20 '10 at 12:00
For sure. This redirect is the first step in this refactoring, actually :) – berkes Jul 20 '10 at 12:14
feedback

2 Answers

up vote 3 down vote accepted

Since version 5.1.0, there's the max_redirects option, which makes the fopen HTTP wrapper follow the Location redirect:

The max number of redirects to follow. Value 1 or less means that no redirects are followed.

Defaults to 20.

You might want to set it explicitly, in case your config disables this. An example modified from the docs:

<?php

$url = 'http://www.example.com/';

$opts = array(
       'http' => array('method' => 'GET',
                       'max_redirects' => '20')
       );

$context = stream_context_create($opts);
$stream = fopen($url, 'r', false, $context);

// header information as well as meta data
// about the stream
var_dump(stream_get_meta_data($stream));

// actual data at $url
var_dump(stream_get_contents($stream));
fclose($stream);
?>
link|improve this answer
feedback

EDIT: Wrong stupid answer below :)

I don't think it will. The response sent by the server (also the one read by fopen()) contains a special header, like an instruction to the browser to go to that other address. So, I don't see why it would work with fopen :)

link|improve this answer
3  
Not true: The fopen HTTP wrapper can deal with a lot of things. – Pekka Jul 20 '10 at 12:01
2  
Whoops. Didn't know that. Learn something every day :) – Bogdan Jul 20 '10 at 12:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.