在PHP中,header函数用于发送原始的HTTP头部。
语法:header(string $string, bool $replace = true, int $http_response_code = null)
参数:
示例用法:
header("Content-Type: application/json");
header("Location: https://example.com");
header("HTTP/1.1 404 Not Found");
注意事项:
更多详细信息,请参考PHP官方文档:https://www.php.net/manual/zh/function.header.php