PHP multiple file download

后端 未结 2 1230
太阳男子
太阳男子 2020-12-11 21:14

I\'ve seen this example on the documentation for PHP readfile



        
2条回答
  •  独厮守ぢ
    2020-12-11 22:14

    You can't. It's not a PHP limitation, it's an HTTP/Web-Browser limitation. HTTP doesn't provide a mechanism for sending multiple files over one request.

    You could, however, have some PHP script that generates multiple iframes, which would initiate one download each, and fake it that way.

提交回复
热议问题