Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to have a php script return a specific http status code rather than relying on apache to do it?

share|improve this question

2 Answers

header("HTTP/1.0 404 Not Found");

http://php.net/header

share|improve this answer
That's correct except I put HTTP/1.1 instead of 1.0. HTTP 1.0 is a dinosaur; it doesn't allow many features of the modern web. Granted, PHP would probably convert it to 1.1 anyway... – thomasrutter Aug 4 '10 at 2:11
2  
Actually.... You would check which HTTP version was requested of course, and respond in kind :P – Wrikken Aug 4 '10 at 2:22
Usually I use this with a javascript auto refresh and the status code of 204 to tell the browser that there is no content. This way, the page will not refresh if there is nothing to update. (or refresh if there is a change) Only problem is on IE it will generate that horrible clicking sound every time the page is called. – iWantSimpleLife Aug 4 '10 at 4:45

You can set header values manually with php, for example:

<?php
header("HTTP/1.0 404 Not Found");
?>
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.