如何使视频和音频文件可供下载?
可能的重复:
强制使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Content-disposition 标头应该可以做到这一点:
还包括 Content-type 标头也是一个很好的做法(特别是如果您使用 php 页面来提供它):
ex audio/mpeg (mp3)、video/mp4
Using the Content-disposition header should do it:
Also including a Content-type header is good practice as well (especially if you are using a php page to serve it):
e.x. audio/mpeg (mp3), video/mp4