/**
*ファイルダウンロード機能
* @param string $fileName ファイル名
* @param string $fileExt ファイルサフィックス名
*/
関数 downloadFile($fileName, $fileExt = '.txt' )
{
if( empty($fileName)) return FALSE;
$fileName .= $fileExt;
$filePath = TEMI_UPLOAD_PATH 。 $ファイル名;
$file = fopen($filePath, "r");
Header("Content-type: application/octet-stream");
Header("Accept-Range: バイト");
Header("Accept-Length: " . filesize($filePath));
Header("Content-Disposition:attachment;filename=" . $fileName);
echo fread($file, filesize($filePath));
fclose($file);
}
?>