1. 重定向到其他页面:```PHPheader("Location: Http://www.example.com");exit;
1. 重定向到其他页面:
```PHP
header("Location: Http://www.example.com");
exit;
```
2. 强制下载文件:
```php
header("Content-Disposition: attachment; filename='example.pdf'");
header("Content-Type: application/pdf");
readfile("path/to/example.pdf");
```
3. 设置刷新页面时间:
```php
header("Refresh: 5; url=http://www.example.com");
echo "页面将在5秒后刷新到新的页面";
```
4. 设置页面编码:
```php
header("Content-Type: text/html; charset=UTF-8");
```
5. 禁止页面缓存:
```php
header("Cache-Control: no-cache, no-store, must-revalidate");
header("Pragma: no-cache");
header("Expires: 0");
```
6. 设置页面状态码:
```php
header("HTTP/1.1 404 Not Found");
```
7. 设置文件下载大小:
```php
header("Content-Length: " . filesize("path/to/example.pdf"));
```
--结束END--
本文标题: PHP header()的7种用法
本文链接: https://lsjlt.com/news/381312.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