PHP header()的用法有哪些
PHP中的header()函数用于发送HTTP标头。根据具体需求,你可以使用不同的HTTP标头来控制页面的行为。
PHP中的header()函数用于发送HTTP标头。
以下是header()函数的一些常见用法:
1. 设置页面重定向:php
header("Location: http://www.example.com");
exit;
2. 设置页面字符编码:php
header("Content-Type: text/html; charset=UTF-8");
3. 设置缓存控制:php
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");
4. 设置文件下载:php
header("Content-Disposition: attachment; filename=\"example.txt\"");
header("Content-Type: application/octet-stream");
header("Content-Transfer-Encoding: binary");
5. 设置页面刷新:php
header("Refresh: 5; url=http://www.example.com");
这些只是header()函数的一些常见用法,实际上还有许多其他用法。根据具体需求,你可以使用不同的HTTP标头来控制页面的行为。
(图片来源网络,侵删)
文章版权声明:除非注明,否则均为主机测评原创文章,转载或复制请以超链接形式并注明出处。