如何使视频和音频文件可供下载?

发布于 2024-12-22 17:06:59 字数 421 浏览 0 评论 0原文

可能的重复:
强制使用 PHP 下载文件
如何使用 php 标头立即开始文件下载 < /p>

我们正在开发一个转换器网站,我们希望用户下载转换后的文件。如何使文件可供下载?另一个问题是音频文件正在浏览器上播放,但我们希望所有视频和音频文件都可下载。 PHP 代码。

Possible Duplicate:
Forcing to download a file using PHP
How to start file download instantly using php headers

We're working on a converter site, and we want users to download the converted file. How to make the files downloadable? The other problem is the audio files are playing on browsers, but we want all Video and audio file downloadable. Php code.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

┊风居住的梦幻卍 2024-12-29 17:06:59

使用 Content-disposition 标头应该可以做到这一点:

header("Content-disposition: attachment; filename=some_file.ext");

还包括 Content-type 标头也是一个很好的做法(特别是如果您使用 php 页面来提供它):

header("Content-type: mime/type");

ex audio/mpeg (mp3)、video/mp4

Using the Content-disposition header should do it:

header("Content-disposition: attachment; filename=some_file.ext");

Also including a Content-type header is good practice as well (especially if you are using a php page to serve it):

header("Content-type: mime/type");

e.x. audio/mpeg (mp3), video/mp4

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文