| JackyChon の記述を引用: |
simoyamaさん
私も同じところでつまずいています。
具体的にはdownload.phpのどの辺を修正されたのでしょうか。
ご教示頂ければ幸いです。 |
download.phpの193行目付近を以下のように修正しました。
// Send out the Headers
//header('Content-Type: ' . $attachment['mimetype'] . '; name="' . htmlspecialchars($attachment['real_filename']) . '"');
header('Content-Type: ' . $attachment['mimetype'] . '; name="' . mb_convert_encoding(htmlspecialchars($attachment['real_filename']),"Shift-JIS","EUC-JP") . '"');
//header('Content-Disposition: inline; filename="' . htmlspecialchars($attachment['real_filename']) . '"');
header('Content-Disposition: inline; filename="' . mb_convert_encoding(htmlspecialchars($attachment['real_filename']),"Shift-JIS","EUC-JP") . '"');