php MP3文件下载功能的实现 [ 新手入门 ]
服务器端:
function download(){
$full_path = 'pro/mp3/demo.mp3';
$file_size = filesize($full_path);
header("Content-type:audio/mpeg");
header("Accept-Ranges:bytes");
header("Accept-Length:$file_size");
header("Content-Disposition:attachment;filename=demo.mp3");
readfile($full_path);
exit();
}
共 0 条回复
没有找到数据。
PHP学院的中学生
注册时间:2018-10-23
最后登录:2024-09-23
在线时长:168小时13分
最后登录:2024-09-23
在线时长:168小时13分
- 粉丝29
- 金钱4725
- 威望30
- 积分6705