Download a .mp3 link and save it to computer with PHP(下载 .mp3 链接并使用 PHP 将其保存到计算机)
问题描述
我想保存在我的计算机上的 .txt 文件中有很多直接 .mp3 链接(例如:http://mylink.mp3 ),我想知道如何使用 PHP 做到这一点?
I've got lots of direct .mp3 links in a .txt file that I'd like to save on my computer (like this: http://mylink.mp3 ), and I was wondering how I could do this with PHP ?
我应该使用 file_get_contents 吗?
Should I use file_get_contents ?
(对不起,如果我的问题已经在这里得到解答,我搜索了但它没有帮助我)
(Sorry if my questions was already answered here, I searched but it didn't help me)
谢谢你:).
推荐答案
$file = 'http://somewebsite.com/thesong.mp3';
header("Content-type: application/x-file-to-save");
header("Content-Disposition: attachment; filename=".basename($file));
readfile($file);
您可能希望避免循环,因为下载大量文件可能会占用资源.
You probably will want to avoid looping as downloading a lot of files can be a resource sucker.
这篇关于下载 .mp3 链接并使用 PHP 将其保存到计算机的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:下载 .mp3 链接并使用 PHP 将其保存到计算机
基础教程推荐
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01