PHP中的header()函數用于向客戶端發送原始的HTTP頭信息。這個函數必須在頁面中其他任何輸出之前調用,否則會報錯。
header()函數通常用于重定向頁面、設置cookie、設置緩存控制等功能。例如:
// 重定向到另一個頁面
header("Location: http://www.example.com");
// 設置cookie
header("Set-Cookie: username=johndoe");
// 設置緩存控制
header("Cache-Control: no-cache, no-store, must-revalidate");
header("Pragma: no-cache");
header("Expires: 0");
需要注意的是,header()函數必須在頁面輸出之前調用,否則會報錯。另外,一旦header()函數發送了HTTP頭信息,就不能再發送其他輸出,否則會導致錯誤。