您现在的位置是:首页 >综合 > 2023-10-12 11:06:08 来源:

header.htm(header php)

导读 大家好,我是小夏,我来为大家解答以上问题。header.htm,header php很多人还不知道,现在让我们一起来看看吧!1、函数描述:header() 函...

大家好,我是小夏,我来为大家解答以上问题。header.htm,header php很多人还不知道,现在让我们一起来看看吧!

1、函数描述:

header() 函数向客户端发送原始的 HTTP 报头。

2、函数语法:

header(string,replace,http_response_code)

3、函数参数:

①string:必需。规定要发送的报头字符串;

②replace :可选。指示该报头是否替换之前的报头,或添加第二个报头。默认是 true(替换)。false(允许相同类型的多个报头);

③http_response_code:可选。把 HTTP 响应代码强制为指定的值。

4、函数举例:

<?php

// Date in the past

header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");

header("Cache-Control: no-cache");

header("Pragma: no-cache");

?>

<html>

<body>

本文到此讲解完毕了,希望对大家有帮助。