Skip to content

Instantly share code, notes, and snippets.

@nuhil
Created March 6, 2015 15:12
Show Gist options
  • Save nuhil/f1804640a1243855a622 to your computer and use it in GitHub Desktop.
Save nuhil/f1804640a1243855a622 to your computer and use it in GitHub Desktop.
Nginx - Get header data by PHP
<?php
foreach (getallheaders() as $name => $value) {
echo $name.':'.$value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment