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.
Description
The server provided by
php -Sdoes 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.