[php-src] Issue #23242: PHP development server does not support Expect 100-continue flow control
[email protected] (Sjord)
| Newsgroups | php.bugs |
|---|---|
| Message-ID | <[email protected]> |
Issue: https://github.com/php/php-src/issues/23242 Author: Sjord ### Description The server provided by `php -S` does not work optimally when posting large files to it with curl. https://everything.curl.dev/http/post/expect100.html Curl waits one second for a 100 Continue response, but the PHP server does not send it. This means that the PHP server introduces a one second delay on such requests.