php header()函数
header():函数向用户客户端发送原始的 HTTP 报头。
语法:
header(string,replace,http_response_code)
参数:
string:必需。规定要发送的报头字符串。
replace:(可选)表示该报头是否更换之前或添加第二个报头,默认为 true
http_response_code:(可选),把 HTTP 状态逼迫为指定的值
例:
header(\"大众Cache-Control: no-cache\"大众);header(\公众Location: http://www.baidu.com\"大众);php输出 html 404 状态码的方法
方法1:
利用上面所先容的 header() 函数,来输出 HTML 404 状态码
代码:
<?phpheader('HTTP/1.1 404 Not Found');header(\"大众status: 404 Not Found\"大众);?>
方法2:
http_response_code():获取/设置相应的 HTTP 状态码
代码:
<?phphttp_response_code(404);?>
注:http_response_code() 函数,只能在高于5.4(包括5.4)的php版本中利用