Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use php function file_get_contents and one of params is http headers. I make them such like this:

if (strpos($key, 'HTTP_') === 0) {
    $key = strtolower(strtr(substr($key, 5), '_', '-'));
    $this->headers .= $key . ': ' . $value . '\r\n';
}

but here is a problem, I should send headers in double quotes like this:

"Connection: close\r\nContent-Length: $data_len\r\n"

Here is an example of how do I make request:

$opts = array(
        'http'  =>  array(
            'method'    => "GET",
            'header'    => $this->headers
        )
);

$this->data = file_get_contents('http://phd.yandex.net/detect', false, stream_context_create($opts));

but it is fails. If I replace $this->headers in array with a custom string of http headers, everything works fine.

how to make it works right?

share|improve this question
1  
Have you considered cURL? – NullUserException Oct 19 '11 at 16:06
What's your custom string look like, v.s. what the above code generates? – Marc B Oct 19 '11 at 16:06
1  
Is it a typo that you omitted the quotes around \r\n? – Michael Berkowski Oct 19 '11 at 16:07
You are missing quotes around the \r\n in the first code section - could this be the problem? I suspect it will not parse but you never know... – DaveRandom Oct 19 '11 at 16:08
missing quotes around the \r\n it is a typo – Yekver Oct 19 '11 at 16:09
show 2 more comments

1 Answer

up vote 5 down vote accepted

The \r\n needs to be in double quotes so that the characters are parsed correctly. Everything else can be appended using single quotes, no problem. Only a few things are parsed using the backslash in single quoted strings, such as \\, \', and \".

Your headers are looking like this:

Key: Value\r\nKey: value\r\n

Where the \r\n is appearing as an actual string, when you want it to look like this:

Key: Value
Key: Value

Where the \r\n actually creates a new line in the headers.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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