Created
March 22, 2012 18:48
-
-
Save PhazeonPhoenix/2161689 to your computer and use it in GitHub Desktop.
PHP: dump HTTP headers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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