码迷,mamicode.com
首页 > 其他好文 > 详细

获取顶级域名函数

时间:2015-03-02 12:53:34      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:

  function parseHost($httpurl)
  {
    $httpurl = strtolower( trim($httpurl) );
    if(empty($httpurl)) return ;
    $regx1 = ‘/https?:\/\/(([^\/\?#]+\.)?([^\/\?#-\.]+\.)(com\.cn|org\.cn|net\.cn|com\.jp|co\.jp|com\.kr|com\.tw)(\:[0-9]+)?)/i‘;
    $regx2 = ‘/https?:\/\/(([^\/\?#]+\.)?([^\/\?#-\.]+\.)(cn|com|org|net|cc|biz|hk|jp|kr|name|me|tw|la)(\:[0-9]+)?)/i‘;
    $host = $tophost = ‘‘;
    if(preg_match($regx1,$httpurl,$matches))
    {
      $host = $matches[1];
    } elseif(preg_match($regx2, $httpurl, $matches)) {
      $host = $matches[1];
    }
    if($matches) $tophost = $matches[2] == ‘www.‘ ? $host:$matches[3].$matches[4].$matches[5];
    return array($host,$tophost);
  }

 

获取顶级域名函数

标签:

原文地址:http://www.cnblogs.com/yutaoyao/p/4308408.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!