hello,
are there any functions in PHP, which tell you all the header informations sent to the client?
There are the header(), which sets the value of a header component, setcookie(), or headers_sent(). But no one returns you a specified header infromation. (sent to the client)
In C# (.NET) you have the Request.Headers NameValueCollection,
which returns you all the headers received from the client.
It has no equivalent for the Response object.
I know, the received header can be known by the $_SERVER global variable.
What about the sent headers?