1

我想保存在我的计算机上的 .txt 文件中有很多直接的 .mp3 链接(例如:http://mylink.mp3),我想知道如何使用 PHP 做到这一点?

我应该使用 file_get_contents 吗?

(对不起,如果我的问题已经在这里得到解答,我搜索了但它没有帮助我)

谢谢 :)。

4

1 回答 1

3
$file = 'http://somewebsite.com/thesong.mp3'; 
header("Content-type: application/x-file-to-save"); 
header("Content-Disposition: attachment; filename=".basename($file)); 
readfile($file);

您可能希望避免循环,因为下载大量文件可能会占用资源。

于 2013-08-12T20:50:44.870 回答