在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