注意 传统的标头一定包含下面三种标头之一并只能出现一次
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)
?>