【发布时间】:2016-11-23 00:40:58
【问题描述】:
我在用于文件下载的页面中有一个 iframe。我使用 mp3 歌曲路径和磁贴将 iframe 源设置为指向此 php 文件。
<?php
header("Content-Type: application/octet-stream");
$name = $_GET['name'];
header("Content-Disposition: attachment; filename=\"$name\"");
$path = str_replace(' ', '%20', $_GET['path']);
readfile($path);
exit;
?>
当我尝试从本网站的音频播放器下载 mp3 歌曲时:
我在控制台中收到此消息,下载时文件大小始终为 0 字节。
Resource interpreted as Document but transferred with MIME type application/octet-stream
【问题讨论】: