Заглавие PHP $_sever

Примерен код

0
0


There's a polyfill for this that can be downloaded or installed via composer:

https://github.com/ralouphie/getallheaders
0
0


it could be useful if you using nginx instead of apache



<?php

if (!function_exists('getallheaders')) 

{

    function getallheaders() 

    {

           $headers = [];

       foreach ($_SERVER as $name => $value) 

       {

           if (substr($name, 0, 5) == 'HTTP_') 

           {

               $headers[str_replace(' ', '-', ucwords(strtolower(str_replace('_', ' ', substr($name, 5)))))] = $value;

           }

       }

       return $headers;

    }

}

?>

На други езици

Тази страница на други езици

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Íslensk
..................................................................................................................