Removed a method to get the IP

This commit is contained in:
Shoghi Cervantes Pueyo 2013-01-14 18:07:50 +01:00
parent cd05434853
commit 8bc40d2d9c

View File

@ -42,14 +42,13 @@ class Utils extends Thread{
}
public static function getIP(){
$ip = trim(Utils::curl_get("http://automation.whatismyip.com/n09230945.asp"));
$ip = "";//trim(Utils::curl_get("http://automation.whatismyip.com/n09230945.asp"));
if($ip != ""){
return $ip;
}else{
$ip = trim(Utils::curl_get("http://checkip.dyndns.org/"));
$ip = preg_replace("/Current IP Address: (.*)/", '$1', $ip);
if($ip != ""){
return $ip;
$ip = trim(strip_tags(Utils::curl_get("http://checkip.dyndns.org/")));
if(preg_match('/Current IP Address\: (.*)/', $ip, $matches) > 0){
return $matches[1];
}else{
return false;
}