update : 2015.11.03
php.shukuma.com

검색:
 
 
Get or Set the HTTP response code

http_response_code

(PHP 5 >= 5.4.0)

http_response_codeGet or Set the HTTP response code

설명

int http_response_code ([ int $response_code ] )

If you pass no parameters then http_response_code will get the current status code. If you pass a parameter it will set the response code.

인수

response_code

The optional response_code will set the response code.

<?php
http_response_code
(404);
?>

반환값

The current response code. By default the return value is int(200).

예제

Example #1 Examples using http_response_code()

<?php

// Get the current default response code
var_dump(http_response_code()); // int(200)

// Set our response code
http_response_code(404);

// Get our new response code
var_dump(http_response_code()); // int(404)
?>

위 예제의 출력:

참고

  • header() - Send a raw HTTP header
  • headers_list() - Returns a list of response headers sent (or ready to send)