注意 傳統的標頭一定包含下面三種標頭之一並只能出現一次
ContentType xxxx/yyyy
Location xxxxyyyy/zzzz
Status nnn xxxxxx
在新的多型標頭規格 (Multipart MIME) 方可以出現二次以上
范例一 本例使浏覽器重定向到 PHP 的官方網站
Header(Location)
exit
>?
范例二 要使用者每次都能得到最新的資料而不是 Proxy 或 cache 中的資料可以使用下列的標頭
header(Expires Mon Jul GMT)
header(LastModified gmdate(D d M Y His) GMT)
header(CacheControl nocache mustrevalidate)
header(Pragma nocache)
>?
范例三 讓使用者的浏覽器出現找不到檔案的信息
header(Status Not Found)
>?
范例四讓使用者下載檔案
header(Contenttype application/xgzip)
header(ContentDisposition attachment filename=文件名\)
header(ContentDescription PHP Generated Data)
?>
From:http://tw.wingwit.com/Article/program/Delphi/201311/8407.html