从URL获取域名

时间:2013-07-17 10:33:25

标签: php url

好的,在你说“哦,来吧!这很容易”之前,我必须告诉你,我已经为这个特定的东西测试了许多不同的方法,很长一段时间,我还没有找到任何方法真正适用于任意网址任何网域

示例:

  • http://www.this-is-a-url.com = this-is-a-url.com
  • www.this-is-another.url.com/some-folder = this-is-another-url.com
  • subdomain.somesub.domain.com/index.php = domain.com
  • diff.erentltd.in = erentltd.in
  • www.andanotherone.org.uk = andanotherone.org.uk

那么,有什么想法吗?你知道任何工作函数/脚本吗?


对任何感兴趣的人:请查看 @ bystwn22 的回答。这是您可能找到的最顺畅的工作解决方案之一! : - )

3 个答案:

答案 0 :(得分:3)

好的,试试这个,我知道这个问题真的很棘手:\

<?php
  $urls = array(
    "http://www.this-is-a-url.com",
    "www.this-is-another-url.com/some-folder",
    "subdomain.somesub.domain.com/index.php",
    "diff.erentltd.in",
    "www.andanotherone.org.uk"
  );

  foreach( $urls as $url ) {
    var_dump( get_domain( $url ) );
  }

  /** Output **/
  // string(17) "this-is-a-url.com"
  // string(23) "this-is-another-url.com"
  // string(10) "domain.com"
  // string(11) "erentltd.in"
  // string(20) "andanotherone.org.uk"
?>

功能get_domain

<?php
  function get_domain( $url ) {
    $regex  = "/^((http|ftp|https):\/\/)?([\w-]+(\.[\w-]+)+)([\w.,@?^=%&amp;:\/~+#-]*[\w@?^=%&amp;\/~+#-])?$/i";
    if ( !preg_match( $regex, $url, $matches ) ) {
      return false;
    }
    $url    = $matches[3];
    $tlds   = array( 'ac', 'ad', 'ae', 'aero', 'af', 'ag', 'ai', 'al', 'am', 'an', 'ao', 'aq', 'ar', 'arpa', 'as', 'asia', 'at', 'au', 'aw', 'ax', 'az', 'ba', 'bb', 'bd', 'be', 'bf', 'bg', 'bh', 'bi', 'biz', 'bj', 'bm', 'bn', 'bo', 'br', 'bs', 'bt', 'bv', 'bw', 'by', 'bz', 'ca', 'cat', 'cc', 'cd', 'cf', 'cg', 'ch', 'ci', 'ck', 'cl', 'cm', 'cn', 'co', 'com', 'coop', 'cr', 'cu', 'cv', 'cx', 'cy', 'cz', 'de', 'dj', 'dk', 'dm', 'do', 'dz', 'ec', 'edu', 'ee', 'eg', 'er', 'es', 'et', 'eu', 'fi', 'fj', 'fk', 'fm', 'fo', 'fr', 'ga', 'gb', 'gd', 'ge', 'gf', 'gg', 'gh', 'gi', 'gl', 'gm', 'gn', 'gov', 'gp', 'gq', 'gr', 'gs', 'gt', 'gu', 'gw', 'gy', 'hk', 'hm', 'hn', 'hr', 'ht', 'hu', 'id', 'ie', 'il', 'im', 'in', 'info', 'int', 'io', 'iq', 'ir', 'is', 'it', 'je', 'jm', 'jo', 'jobs', 'jp', 'ke', 'kg', 'kh', 'ki', 'km', 'kn', 'kp', 'kr', 'kw', 'ky', 'kz', 'la', 'lb', 'lc', 'li', 'lk', 'lr', 'ls', 'lt', 'lu', 'lv', 'ly', 'ma', 'mc', 'md', 'me', 'mg', 'mh', 'mil', 'mk', 'ml', 'mm', 'mn', 'mo', 'mobi', 'mp', 'mq', 'mr', 'ms', 'mt', 'mu', 'museum', 'mv', 'mw', 'mx', 'my', 'mz', 'na', 'name', 'nc', 'ne', 'net', 'nf', 'ng', 'ni', 'nl', 'no', 'np', 'nr', 'nu', 'nz', 'om', 'org', 'pa', 'pe', 'pf', 'pg', 'ph', 'pk', 'pl', 'pm', 'pn', 'pr', 'pro', 'ps', 'pt', 'pw', 'py', 'qa', 're', 'ro', 'rs', 'ru', 'rw', 'sa', 'sb', 'sc', 'sd', 'se', 'sg', 'sh', 'si', 'sj', 'sk', 'sl', 'sm', 'sn', 'so', 'sr', 'st', 'su', 'sv', 'sy', 'sz', 'tc', 'td', 'tel', 'tf', 'tg', 'th', 'tj', 'tk', 'tl', 'tm', 'tn', 'to', 'tp', 'tr', 'travel', 'tt', 'tv', 'tw', 'tz', 'ua', 'ug', 'uk', 'us', 'uy', 'uz', 'va', 'vc', 've', 'vg', 'vi', 'vn', 'vu', 'wf', 'ws', 'ye', 'yt', 'yu', 'za', 'zm', 'zw' );
    $parts  = array_reverse( explode( ".", $url ) );
    $domain = array();

    foreach( $parts as $part ) {
      $domain[] = $part;
      if ( !in_array( strtolower( $part ), $tlds ) ) {
        return implode( ".", array_reverse( $domain ) );
      }
    }
  }
?>

答案 1 :(得分:1)

我致力于一个更简单的解决方案。由于我们遇到的问题parse_url

check("www.google.com");

function check($url) {
        if (!preg_match("/^http/", $url)) $url = "http://" . $url;
        echo preg_replace("/.*\.([^\.]+\.[^\.]+)/", "$1", parse_url ( $url, PHP_URL_HOST ));
}

答案 2 :(得分:1)

嗯,您实际上需要2个列表:二级域名和顶级域名。

  1. 通过preg_matchparse_url从您的网址获取托管服务,假设它将是 subdomain.domain.org.uk

  2. 点击它并取出该数组的最后两个元素,再次连接点( org.uk )。如果那是第二级域名之一 - 添加前一个数组元素,并且您拥有自己的域名( domain.org.uk )。

  3. 否则您的域名是您在步骤2中检查过的域名(如果数组的最后一个元素是顶级域名之一,如果您非常确定域名有效,则可以跳过此检查)。如果您的原始主机是 subdomain.domain.com ,那么您已检查 domain.com 不是二级域名,这意味着您正在寻找 domain.com

  4. 这是list of second-level domains。或者你可以尝试找一个更好的。