从网址中删除子域名

时间:2012-06-19 23:41:44

标签: php regex preg-match

所以我有这种代码,它返回域名,但我无法弄清楚如何删除子域名,有人可以帮忙吗?

$link='http://www.lol.wwwyoursitewww.com/aaaaa/ggghd/site.php?sadf=asg';
preg_match('/^http\:\/\/www.(.*?)\/.*/i', $link, $link_domain);
echo $link_domain[1]; 

3 个答案:

答案 0 :(得分:1)

我会使用内置的parse_url尽可能多地做,这只会让你有一个域名来整理。我对这些要求有点不清楚。什么是预期的输出? - 只是wwwyoursitewww.com?或http://wwwyoursitewww.com/aaaaa/ggghd/site.php?sadf=asg

$link='http://www.lol.wwwyoursitewww.com/aaaaa/ggghd/site.php?sadf=asg';

$url = parse_url($link);

if (preg_match("/(www.*?)\.(.*)/", $url['host'], $m)) {
  $url['host'] = $m[2];
}

$rebuild = $url['scheme'] . '://' . $url['host'] . $url['path'] . '?' . $url['query'];

echo "$rebuild\n";

答案 1 :(得分:0)

$link='http://www.lol.wwwyoursitewww.com/aaaaa/ggghd/site.php?sadf=asg';
preg_match('!www((\.(\w)+))+!', $link, $match);
$link_arr=(explode(".", $match[0]));
echo $link_domain = $link_arr[count($link_arr)-1];

输出:com

答案 2 :(得分:0)

获取没有子域的host。使用www

/**
   * Get Host without subdomain
   * @param $host
   * @return string
   */
  public static function giveHost($host): string
  {
    $newHost    = $host;
    $host_array = explode('.', $host);
    $countDot   = count($host_array);
    if ($countDot > 2){
      $newHost = $host_array[$countDot-2].'.'.$host_array[$countDot-1];
      if (preg_match('/www/', $host)){
        $newHost = 'www.'.$newHost;
      }
    }
    return $newHost;
  }