$http_response_header

Оновлено: 11.05.2023

(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8)

$http_response_header - заголовки відповіді HTTP

Масив $http_response_header подібний до функції get_headers(). При використанні HTTP-обгортки $http_response_header буде заповнено заголовками HTTP-відповіді. Масив $http_response_header буде створено в локальній області видимості.

Приклад #1 Приклад заголовка $http_response_header

<?php
function get_contents() {
  file_get_contents("http://example.com");
  var_dump($http_response_header);
}
get_contents();
var_dump($http_response_header);
?>