Skip to content

Instantly share code, notes, and snippets.

@gchacaltana
Forked from hmert/nginx_request_headers.php
Created January 15, 2014 22:34
Show Gist options
  • Save gchacaltana/8446091 to your computer and use it in GitHub Desktop.
Save gchacaltana/8446091 to your computer and use it in GitHub Desktop.
// apache_request_headers replicement for nginx
if (!function_exists('apache_request_headers')) {
function apache_request_headers() {
foreach($_SERVER as $key=>$value) {
if (substr($key,0,5)=="HTTP_") {
$key=str_replace(" ","-",ucwords(strtolower(str_replace("_"," ",substr($key,5)))));
$out[$key]=$value;
}else{
$out[$key]=$value;
}
}
return $out;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment