Created
October 16, 2016 17:04
-
-
Save kolobus/702ea37bedcb83a59bc0833a3af34612 to your computer and use it in GitHub Desktop.
Get external IP
This file contains 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 | |
header("Content-Type: text/plain"); | |
// Comment the following line if you're not under cloudflare | |
echo @$_SERVER["HTTP_CF_CONNECTING_IP"] ? $_SERVER["HTTP_CF_CONNECTING_IP"] : $_SERVER["REMOTE_ADDR"]; | |
// Uncomment the following line if you're not under cloudflare | |
// echo $_SERVER["REMOTE_ADDR"]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment