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.
我正在使用php-pdftk生成 pdf 文件。我正在尝试创建多个 pdf,但这只会生成 1 个文件。这是我正在做的一个例子。
$pdf = new Pdf( 'file1.pdf' ); $pdf->send('test1.pdf'); $pdf2 = new Pdf( file2.pdf' ); $pdf2->send('test2.pdf');
这只输出 test1.pdf 我不能让它同时输出。有人知道怎么做这个吗?谢谢
在单个 HTTP 响应中发送多个文件(独立于文件类型)是不可能的。
您可以尝试压缩生成的文件并发送它。