Skip to content

Instantly share code, notes, and snippets.

@splanquart
Last active December 30, 2015 12:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save splanquart/7826749 to your computer and use it in GitHub Desktop.
Save splanquart/7826749 to your computer and use it in GitHub Desktop.
getallheaders function in PHP
<?php
if(!function_exists('getallheaders')){
function getallheaders(){
$headers = array();
foreach ($_SERVER as $name => $value){
if(substr($name, 0, 5) == 'HTTP_'){
$name = str_replace(' ', '-', ucwords(strtolower(str_replace('_', ' ', substr($name, 5)))));
$headers[$name] = $value;
} else if($name == "CONTENT_TYPE") {
$headers["Content-Type"] = $value;
} else if($name == "CONTENT_LENGTH") {
$headers["Content-Length"] = $value;
} else{
$headers[$name]=$value;
}
}
return $headers;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment