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.
我有一个问题,我想覆盖现有的 pdf 文件。这就是我想要做的,当我更新系统中的某些内容时,例如:我在数据库中插入新数据,必须在特定路径中自动下载(我认为它是 fpdf 中的 d 或 f)(C: //pdf_folders) 和现有的 pdf 文件 (oyeah.pdf) 必须更新或覆盖内容。
我怎样才能做到这一点?请帮我。:(
如果文件存在则需要删除
if (file_exists('oyeah.pdf')) { unlink('oyeah.pdf'); } $pdf->Output('oyeah.pdf', 'FD');