从网站下载pdf文件并在下载后更改文件名

时间:2011-02-26 22:56:07

标签: php

我正在尝试下载一些文件。我写了一个php脚本,可以收集我需要下载到数组中的pdf文件的所有地址,但该服务器上的文件名是奇数。如何用php下载pdf文件?

2 个答案:

答案 0 :(得分:3)

你可以尝试(如果我理解你的问题)

file_put_contents('/your/file/name.pdf', 
    file_get_contents('http://www.example.com/oddFile.pdf'))

答案 1 :(得分:0)

查看filefile_get_contents个功能。它可以使用URL和本地文件名。

http://www.php.net/manual/en/function.file.php

http://www.php.net/manual/en/function.file-get-contents.php