标签: php download
我想知道当网站向我发送下载标题(例如:http://www.exploit-db.com/download/1)我如何使用PHP时如何获取文件。
我用这个函数来获取文件:file_get_contents('http://www.exploit-db.com/download/1');
但内容不是我想要的>>保存的内容: :|
答案 0 :(得分:0)
尝试wget函数而不是wget('http://www.exploit-db.com/download/1');
答案 1 :(得分:0)
您的代码中有拼写错误,导致301重定向:
file_get_contents('http://www.exploit-db.com/download/1/');
使用尾部斜杠