PHP mPDF save file as PDF(PHP mPDF 将文件保存为 PDF)
问题描述
我有一个使用 mPDF 的页面,当您运行时在浏览器中显示一个 PDF,它也可以从这里保存为 PDF 没问题.我想要发生的是当页面运行并生成一个 PDF 时,该页面在服务器上保存为 PDF.
I have a page which uses mPDF which when you run displays a PDF in the browser, it can also be saved from here as a PDF no problem. What I would like to happen is when the page is run and generates a PDF that the page is saved as a PDF on the server.
这是当前代码:
就像我说的那样,这可以很好地输出 PDF,但有人可以告诉我如何保存为 PDF 吗?
Like I said this outputs the PDF fine but could someone tell me how to save as a PDF?
推荐答案
mPDFdocs 声明 Output()
的第一个参数是文件路径,第二个是保存模式 - 您需要将其设置为 'F'
.
The mPDF docs state that the first argument of Output()
is the file path, second is the saving mode - you need to set it to 'F'
.
这篇关于PHP mPDF 将文件保存为 PDF的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!