我有一个PHP脚本,需要使用HTTP响应代码(状态代码)做出响应,如HTTP 200 OK,或一些4XX或5XX代码。
如何在PHP中做到这一点?
我有一个PHP脚本,需要使用HTTP响应代码(状态代码)做出响应,如HTTP 200 OK,或一些4XX或5XX代码。
如何在PHP中做到这一点?
当前回答
header("HTTP/1.1 200 OK");
http_response_code(201);
header("Status: 200 All rosy");
http_response_code (200);由于测试警报404,无法工作 https://developers.google.com/speed/pagespeed/insights/
其他回答
如果你在这里是因为Wordpress在加载环境时给出404错误,这应该可以解决这个问题:
define('WP_USE_THEMES', false);
require('../wp-blog-header.php');
status_header( 200 );
//$wp_query->is_404=false; // if necessary
该问题是由于它发送一个状态:404 Not Found头。你必须重写它。 这也可以:
define('WP_USE_THEMES', false);
require('../wp-blog-header.php');
header("HTTP/1.1 200 OK");
header("Status: 200 All rosy");
header("HTTP/1.1 200 OK");
http_response_code(201);
header("Status: 200 All rosy");
http_response_code (200);由于测试警报404,无法工作 https://developers.google.com/speed/pagespeed/insights/
从PHP 5.4开始,你可以使用http_response_code()来获取和设置报头状态码。
这里有一个例子:
<?php
// Get the current response code and set a new one
var_dump(http_response_code(404));
// Get the new response code
var_dump(http_response_code());
?>
下面是这个函数在php.net中的文档:
http_response_code
在不使用输出缓冲的情况下,在body的任何输出之前添加这一行。
header("HTTP/1.1 200 OK");
将消息部分('OK')替换为适当的消息,并将状态代码替换为适当的代码(404、501等)
使用header函数。在第一个参数小节中有一个例子。