PHP - 函数头部



语法

void header ( string $string [, bool $replace = true [, int $http_response_code ]] )

定义和用法

它用于发送 HTTP 头的行。

返回值

不返回值

参数

序号 参数和描述
1

字符串

它包含头字符串。

2

替换

此替换参数指示头是否应替换先前类似的头。

3

http_response_code

Http 响应代码是特定值,它指示响应是否成功。

示例

尝试以下示例

<?php
   header("Location: https://tutorialspoint.com/");
   
   exit;
?>

以上示例将浏览器重定向到 tutorialspoint.com 网站

php_function_reference.htm
广告