通过php下载文件

时间:2014-01-26 00:29:12

标签: php download

我想知道当网站向我发送下载标题(例如:http://www.exploit-db.com/download/1)我如何使用PHP时如何获取文件。

我用这个函数来获取文件:file_get_contents('http://www.exploit-db.com/download/1');

但内容不是我想要的>>保存的内容: :|

2 个答案:

答案 0 :(得分:0)

尝试wget函数而不是wget('http://www.exploit-db.com/download/1');

答案 1 :(得分:0)

您的代码中有拼写错误,导致301重定向:

file_get_contents('http://www.exploit-db.com/download/1/');

使用尾部斜杠