2008年4月13日 星期日

PHP 檔案下載 header 設置

出處:

<---- php 程式開始
$
file_name = "file.name";
$
file_path = "/path/to/realfile";
$
file_size = filesize($file_path);
header('Pragma: public');
header('Expires: 0');
header('Last-Modified: ' . gmdate('D, d M Y H:i ') . ' GMT');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Cache-Control: private', false);
header('Content-Type: application/octet-stream');
header('Content-Length: ' . $
file_size);
header('Content-Disposition: attachment; filename="' . $
file_name . '";');
header('Content-Transfer-Encoding: binary');
readfile($
file_path);
---- php 程式結束 >

【下列文章您可能也有興趣】

沒有留言: