Upload 1GB files using chunking in PHP

前端 未结 8 1210

I have a web application that accepts file uploads of up to 4 MB. The server side script is PHP and web server is NGINX. Many users have requested to increase this limit dra

相关标签:
8条回答
  • 2020-11-27 06:14

    "but I can not find any equivalent of request.getInputStream in PHP. "

    fopen('php://input'); perhaps?

    0 讨论(0)
  • 2020-11-27 06:17

    plupload is a javascript/php library, and it's quite easy to use and allows chunking.

    It uses HTML5 though.

    0 讨论(0)
提交回复
热议问题