以下のコードは URL からドメイン名を取得できます
。
例:http://souzz.net/html/database/ORACLE/69613.htmlsouzz.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) {
$matches[0] を返します;
}それ以外{
$rs = parse_url($url);
$main_url = $rs["ホスト"];
if(!strcmp(long2ip(sprintf("%u",ip2long($main_url))),$main_url)) {
$main_url を返します;
}それ以外{
$arr =explode(".",$main_url);
$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];
}それ以外{
$domain = $arr[$count-2].".".$arr[$count-1];
}
$ドメインを返します。
}// 終了 if(!strcmp...)
}// 終了 if(count...)
}// 関数を終了します