Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将多部分内容发送到浏览器(实际上是一堆要下载到单个文件中的图像)。
例如,当我想发送单个文件时,我会使用:
$size = getimagesize($file); header('Content-Type:'.$size['mime']); readfile($file);
结果将是一个图像。但是如何在一个响应中发送多个文件?我已经在一个网站上看到过(将输出一个文件,您可以下载它,它包括所有图像)。