Empty header causes PHP built-in web server to hang
[2014-03-05 22:38 UTC] jon dot dufresne at gmail dot com
Description:
------------
Serving the test script below through the PHP built-in web server causes the server to hang. A response is never generated. This script works through mod_php. Once the server hangs, Ctrl-C is insufficient to quit. I am only able to quit using the kill command.
Test script:
---------------
<?php
header(' ', false, 200);
Expected result:
----------------
The web server should serve a response with a 200 status code.
Actual result:
--------------
Web server hangs. Requires killing with the kill command.
[2014-07-06 02:25 UTC] yohgaki@php.net