有没有办法将 FPDF 输出转换为 URL?

Is there a way to turn an FPDF output into a URL?

我在 php 中使用 FPDF 创建了一个 pdf。我想让网站自动将此 pdf 上传到 Google Drive through API。但是,看到这不是PC上的文件,我可以把pdf转成url吗? 例如,类似于:http://www.pdf995.com/samples/pdf.pdf 这可能吗?

我想你要找的是

$fpdf->Output('F', 'Path to file');

可以在 documentation.

中找到

将文件保存到可公开访问的文件夹并向用户回显 url。