PHP中的header()函數用于發送HTTP標頭。
以下是header()函數的一些常見用法:
header("Location: http://www.example.com");
exit;
header("Content-Type: text/html; charset=UTF-8");
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");
header("Content-Disposition: attachment; filename=\"example.txt\"");
header("Content-Type: application/octet-stream");
header("Content-Transfer-Encoding: binary");
header("Refresh: 5; url=http://www.example.com");
這些只是header()函數的一些常見用法,實際上還有許多其他用法。根據具體需求,你可以使用不同的HTTP標頭來控制頁面的行為。