日本語ファイル名でダウンロード
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
]
開始行:
ブラウザの種類によって処理を変更する必要あり
<?php
$down_file = 'download.xls';
$down_name = 'ダウンロード';
// IE
if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') > 0) {
$down_name = urlencode(mb_convert_encoding($down_nam...
}
// Firefox他
else {
$down_name = mb_encode_mimeheader($down_name, 'UTF-8...
}
header ("Content-type: text/octet-stream");
header ("Content-disposition: attachment; filename={$dow...
header ("Content-Length: ".filesize($down_file));
ob_end_flush();
readfile($down_file);
exit();
?>
完全に対応できるかどうかは不明~
他に情報あれば求む
終了行:
ブラウザの種類によって処理を変更する必要あり
<?php
$down_file = 'download.xls';
$down_name = 'ダウンロード';
// IE
if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') > 0) {
$down_name = urlencode(mb_convert_encoding($down_nam...
}
// Firefox他
else {
$down_name = mb_encode_mimeheader($down_name, 'UTF-8...
}
header ("Content-type: text/octet-stream");
header ("Content-disposition: attachment; filename={$dow...
header ("Content-Length: ".filesize($down_file));
ob_end_flush();
readfile($down_file);
exit();
?>
完全に対応できるかどうかは不明~
他に情報あれば求む
ページ名: