一些常用的封装函数(获取当前ip、查找手机号归属地、根据ip获取所在地区)

1. 获取请求ip

// 获取请求ip
	function ip() {
		if(getenv('HTTP_CLIENT_IP') && strcasecmp(getenv('HTTP_CLIENT_IP'), 'unknown')) {
			$ip = getenv('HTTP_CLIENT_IP');
		} elseif(getenv('HTTP_X_FORWARDED_FOR') && strcasecmp(getenv('HTTP_X_FORWARDED_FOR'), 'unknown')) {
			$ip = getenv('HTTP_X_FORWARDED_FOR');
		} elseif(getenv('REMOTE_ADDR') && strcasecmp(getenv('REMOTE_ADDR'), 'unknown')) {
			$ip = getenv('REMOTE_ADDR');
		} elseif(isset($_SERVER['REMOTE_ADDR']) && $_SERVER['REMOTE_ADDR'] && strcasecmp($_SERVER['REMOTE_ADDR'], 'unknown')) {
			$ip = $_SERVER['REMOTE_ADDR'];
		} else {
			$ip = 'unknown';
		}
		return preg_match ( '/[\d\.]{7,15}/', $ip, $matches ) ? $matches [0] : '';
	}

2.获取手机号归属地

/ 获取手机号归属地
function GetPhoneCity($phone) {
$url = 'https://cx.shouji.360.cn/phonearea.php?number='.$phone; //360
$ch = curl_init();
$timeout = 10;
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$file_contents = curl_exec($ch);
curl_close($ch);
$info=json_decode($file_contents,true);
return $info;
}

3.获取请求ip的地区

// 获取请求ip的地区
	function getCityCurl($ip) {

	 	$url="http://ip.taobao.com/service/getIpInfo.php?ip=".$ip; 
	    $ch = curl_init(); 
	    $timeout = 5; 
	    curl_setopt ($ch, CURLOPT_URL, $url); 
	    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); 
	    curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); 
	    $file_contents = curl_exec($ch); 
	    curl_close($ch); 
	  
	    $ipinfo=json_decode($file_contents); 
	    if($ipinfo->code=='1'){ 
	        return '';
	    } 
	    $city = $ipinfo->data->region.' '.$ipinfo->data->city; 
	    return $city; 
	}


你可能感兴趣的:(php,知识点)