我正在使用nginx和php-fpm。在将其发送到php-fpm之前,Nginx总是缓冲用户输入。示例代码:
<?php
exit("do not input anything");
// Do something, it's not important because the script was stopped
$handle = fopen('php://input','r');
while (!feof($handle)) {
fread($handle,1024);
}
fclose($handle);
?>
我使用put方法从客户端发送数据 如果客户端发送文件,则不会立即关闭连接, 它等待请求完成!
该代码适用于apache但nginx :(
这个问题有解决方案吗?谢谢!