[OK]をので、私はこの問題は、曲がsinsita happy 1 SONIFI.mp3
のようにスペースが含まれている場合は、ユーザーにのみsinsita
という名前のテキストファイルをダウンロードすることで、曲名前のスペースがダウンロードを中断していますか?
$file = DIR_DOWNLOAD . $download_info->row['filename'];
$mask = basename($download_info->row['mask']);
$mime = 'application/octet-stream';
$encoding = 'binary';
if (!headers_sent()) {
if (file_exists($file)) {
header('Pragma: public');
header('Expires: 0');
header('Content-Description: File Transfer');
header('Content-Type: ' . $mime);
header('Content-Transfer-Encoding: ' . $encoding);
header('Content-Disposition: attachment; filename=' . ($mask ? $mask : basename($file)));
header('Content-Length: ' . filesize($file));
$file = readfile($file, 'rb');
をダウンロードするユーザーをできるようになります。このコードを持っています..この動作を修正する方法.ANYアイデア
はhttp://stackoverflow.com/questions/93551/how-to-encode-the-filename-parameter-of-content-disposition-header-in-を参照してください。 http –