För att ändra nummret på svaret som skickas så kan man ju använda.
Header( "HTTP/1.1 404 Not Found" );
Trodde jag. Men detta kraschar tydligen på min PHP 4.0.1p2 (för Windows)-installation. Kan ju tilläggas att vanliga Header-tillägg fungerar fint. Header( "Location: blbla.php" ); och liknande.
As said above, the function header("http/1.0 404 Not Found"); does not work. In fact, it only works when PHP is compiled as an Apache module (see source head.c)
It is better to use header("status: 404 Not Found"); Because it always works whenever php is compiled as an Apache module or a standalone binary.