下载 PDF 并重命名


Download a PDF and rename it?

我正在编写一个小脚本以节省一些时间。我的脚本将给定的 URL 转换为 PDF,我想将 PDF 下载到本地计算机,例如/Downloads,但我想使用取自表单的名称重命名文件。

这在PHP中可能吗?

使用它来重命名:

rename(oldname,newname)

http://php.net/manual/en/function.rename.php

使用此选项强制下载 pdf 文件:

<?php
header('Content-type: application/pdf');
header('Content-disposition: attachment; filename=filename.pdf');
readfile("http://manuals.info.apple.com/en/iphone_user_guide.pdf");
?>