PHP Velho Oeste 2024

HttpResponse::status

(PECL pecl_http >= 0.12.0)

HttpResponse::statusEnvoi le statut de la réponse HTTP

Description

static bool HttpResponse::status ( int $status )

Cette fonction est un alias de : http_send_status().

add a note add a note

User Contributed Notes 1 note

up
0
VolodyA! V Anarhist
9 years ago
For those with the older versions of PHP you can still set the response code by using the header function. For example:

  //HttpResponse::status(403);
  header("HTTP/1.0 403 Forbidden");
To Top