最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > 建站教程 > CMS教程 > ECShop教程 >

php 如何从字符串中获取URL中获得域名介绍

时间:2014-06-10 11:03来源: 作者: 点击:
本教程主要主讲从字符串中得出 url 的域名部份,下面来看看吧。希望对我有帮助。 例如 :http://www.zhutiai.com 得到 www.zhutiai.net function get_domain($url){ $pattern = "/[w-] .(com|net|org|gov|cc|biz|info|c
(责任编辑:admin)

本教程主要主讲从字符串中得出url的域名部份,下面来看看吧。希望对我有帮助。

例如:http://www.zhutiai.com

得到www.zhutiai.net

function get_domain($url){
$pattern = "/[w-] .(com|net|org|gov|cc|biz|info|cn)(.(cn|hk))*/";
preg_match($pattern, $url, $matches);
if(count($matches) > 0) {
return $matches[0];
}else{
$rs = parse_url($url);
$main_url = $rs["host"];
if(!strcmp(long2ip(sprintf("%u",ip2long($main_url))),$main_url)) {
return $main_url;
}else{
$arr = explode(".",$main_url);
$count=count($arr);
$endArr = array("com","net","org","3322");//com.cn net.cn
等情况
if (in_array($arr[$count-2],$endArr)){
$domain = $arr[$count-3].".".$arr[$count-2].".".$arr[$count-1];
}else{
$domain = $arr[$count-2].".".$arr[$count-1];
}
return $domain;
}// end if(!strcmp...)
}// end if(count...)
}// end function

 

------分隔线----------------------------
栏目列表
推荐内容