Skip to content

Instantly share code, notes, and snippets.

@PhazeonPhoenix
Created March 22, 2012 18:48
Show Gist options
  • Save PhazeonPhoenix/2161689 to your computer and use it in GitHub Desktop.
Save PhazeonPhoenix/2161689 to your computer and use it in GitHub Desktop.
PHP: dump HTTP headers
<?php
echo "<ul>\n";
foreach($_SERVER as $h=>$v)
if(ereg('HTTP_(.+)',$h,$hp))
echo "<li>" . htmlspecialchars("$h = $v") . " </li>\n";
echo "</ul>\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment