PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 2.4.6
Booking for Appointments and Events Calendar – Amelia v2.4.6
2.4.7 2.4.6 2.4.5 2.4.4 2.4.3 2.4.2 2.4.1 2.4 trunk 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 1.2.21 1.2.22 1.2.23 1.2.24 1.2.25 1.2.26 1.2.27 1.2.28 1.2.29 1.2.3 1.2.30 1.2.31 1.2.32 1.2.33 1.2.34 1.2.35 1.2.36 1.2.37 1.2.38 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.1.3 2.2 2.2.1 2.3
ameliabooking / vendor / ralouphie / getallheaders / src / getallheaders.php
ameliabooking / vendor / ralouphie / getallheaders / src Last commit date
getallheaders.php 7 months ago
getallheaders.php
47 lines
1 <?php
2
3 if (!function_exists('ameliavendor_getallheaders')) {
4
5 /**
6 * Get all HTTP header key/values as an associative array for the current request.
7 *
8 * @return string[string] The HTTP header key/value pairs.
9 */
10 function ameliavendor_getallheaders()
11 {
12 $headers = array();
13
14 $copy_server = array(
15 'CONTENT_TYPE' => 'Content-Type',
16 'CONTENT_LENGTH' => 'Content-Length',
17 'CONTENT_MD5' => 'Content-Md5',
18 );
19
20 foreach ($_SERVER as $key => $value) {
21 if (substr($key, 0, 5) === 'HTTP_') {
22 $key = substr($key, 5);
23 if (!isset($copy_server[$key]) || !isset($_SERVER[$key])) {
24 $key = str_replace(' ', '-', ucwords(strtolower(str_replace('_', ' ', $key))));
25 $headers[$key] = $value;
26 }
27 } elseif (isset($copy_server[$key])) {
28 $headers[$copy_server[$key]] = $value;
29 }
30 }
31
32 if (!isset($headers['Authorization'])) {
33 if (isset($_SERVER['REDIRECT_HTTP_AUTHORIZATION'])) {
34 $headers['Authorization'] = $_SERVER['REDIRECT_HTTP_AUTHORIZATION'];
35 } elseif (isset($_SERVER['PHP_AUTH_USER'])) {
36 $basic_pass = isset($_SERVER['PHP_AUTH_PW']) ? $_SERVER['PHP_AUTH_PW'] : '';
37 $headers['Authorization'] = 'Basic ' . base64_encode($_SERVER['PHP_AUTH_USER'] . ':' . $basic_pass);
38 } elseif (isset($_SERVER['PHP_AUTH_DIGEST'])) {
39 $headers['Authorization'] = $_SERVER['PHP_AUTH_DIGEST'];
40 }
41 }
42
43 return $headers;
44 }
45
46 }
47