yuchao 发表于 2018-2-11 12:06:45


            本文实例讲述了PHP自定义函数获取URL中一级域名的方法。分享给大家供大家参考,具体如下:
= 0; $i --) {
    if ($i == 0) {
      // just in case of something like NAME.COM
      break;
    }
    if (in_array ( $sub_domain [$i], $iana_root )) {
      $top_domain_count ++;
      $top_domain = '.' . $sub_domain [$i] . $top_domain;
      if ($top_domain_count >= 2) {
      break;
      }
    }
}
$top_domain = $sub_domain . $top_domain;
return $top_domain;
}
echo top_domain("http://tools.jb51.net/");
?>
页: [1]
查看完整版本: PHP自定义函数获取URL中一级域名的方法