I have a PHP script that needs to make responses with http response codes, like HTTP 200 OK, or some 4XX or 5XX code.
How can I do this in PHP?
|
I have a PHP script that needs to make responses with http response codes, like HTTP 200 OK, or some 4XX or 5XX code. How can I do this in PHP? |
|||
|
|
|
I just found this question and thought it needs a more comprehensive answer: As of PHP 5.4 there are three methods to accomplish this: Assembling the response code on your own (PHP >= 4.0)The
However, this requires special treatment for (Fast)CGI PHP:
Note: According to the HTTP RFC, the reason phrase can be any custom string (that conforms to the standard), but for the sake of client compatibility I do not recommend putting a random string there. Note: 3rd argument to header function (PHP >= 4.3)There are obviously a few problems when using that first variant. The biggest of which I think is that it is partly parsed by PHP or the web server and poorly documented. Since 4.3, the
I recommend the 2nd one. The first does work on all browsers I have tested, but some minor browsers or web crawlers may have a problem with a header line that only contains a colon. The header field name in the 2nd. variant is of course not standardized in any way and could be modified, I just chose a hopefully descriptive name. http_response_code function (PHP >= 5.4)The
That's all. CompatibilityHere is a function that I have cooked up when I needed compatibility below 5.4 but wanted the functionality of the "new"
|
||||
|
|
|
With the header function. There is an example in the section on the first parameter it takes. |
|||
|
|
|
Add this line before any output of the body, in the event you aren't using output buffering.
Replace the message portion ('OK') with the appropriate message, and the status code with your code as appropriate (404, 501, etc) |
|||||||||
|