Skip to content

Instantly share code, notes, and snippets.

@elad-yosifon
Created March 12, 2014 09:12
Show Gist options
  • Save elad-yosifon/9503432 to your computer and use it in GitHub Desktop.
Save elad-yosifon/9503432 to your computer and use it in GitHub Desktop.
<?php
if(!empty($_SERVER['HTTP_X_FORWARDED_FOR'])){
list($ip) = explode(',',$_SERVER['HTTP_X_FORWARDED_FOR']);
$ip = trim($ip);
}else{
$ip = $_SERVER['REMOTE_ADDR']
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment