Skip to content

Instantly share code, notes, and snippets.

@hfcorriez
Created November 5, 2012 06:32
Show Gist options
  • Save hfcorriez/4015670 to your computer and use it in GitHub Desktop.
Save hfcorriez/4015670 to your computer and use it in GitHub Desktop.
Print ip with php
<?php
echo ip();
function ip()
{
if ($ip = getenv('X_FORWARDED_FOR')) {
return $ip;
} elseif ($ip = getenv('CLIENT_IP')) {
return $ip;
}
return getenv('REMOTE_ADDR');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment