我在页面中有一个用于文件下载的iframe。我设置iframe源指向这个PHP文件与mp3歌曲路径和瓷砖。
Resource interpreted as Document but transferred with MIME type application/octet-stream
当我尝试从此网站上的音频播放器下载mp3歌曲时:
我在控制台中收到此消息,下载时文件大小始终为0字节。
{{1}}
答案 0 :(得分:-1)
添加标题,告诉浏览器在知道其路径后文件有多大:
...
header('Content-Length: ' . filesize($path));
readfile($path);
exit;