PHP中的header()函数用于发送Http标头。以下是header()函数的一些常见用法:1. 设置页面重定向:```phphe
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标头来控制页面的行为。
--结束END--
本文标题: PHP header()的用法有哪些
本文链接: https://lsjlt.com/news/381609.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0