2012年6月9日土曜日
2012年6月5日火曜日
PHP ファイルダウンロード
<?php
// ダウンロードさせるファイル名
$tmp_file = "test.txt";
$j_file = "テスト.txt";
$j_file = mb_convert_encoding($j_file, "SJIS", "EUC");
// ヘッダ
header("Content-Type: application/octet-stream");
// ダイアログボックスに表示するファイル名
header("Content-Disposition: attachment; filename=$j_file");
// 対象ファイルを出力する。
readfile($tmp_file);
exit;
?>
登録:
コメント (Atom)