PHP:如何设置http响应代码?

时间:2017-01-24 16:15:51

标签: php

我正在使用PHP版本5.5.12的wamp。我正在尝试使用http_response_code来设置代码。当我使用它时,它返回true而不是我设置的值。我是一个PHP新手,我想知道我在这里缺少什么。如何让它返回300而不是真的?

getCode(300); // returns true and not with the code I set.

function getCode($code)
{
  $statuscode = http_response_code($code);
  echo $statuscode;
}

1 个答案:

答案 0 :(得分:0)

我建议您阅读有关http_response_code的文档:http://php.net/manual/en/function.http-response-code.php

TRUE will be returned if response_code is provided and it is not invoked in a web server environment (but only when no previous response status has been set).

拥有真正的手段"好的,我们将发送300"因此在你的情况下很好。