PHP REGEX: Get domain from URL

前端 未结 9 1920
情歌与酒
情歌与酒 2020-12-08 11:05

What I want


I want to get from a URL the domain part so from http://example.com/ -> example.com

9条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-08 11:29

    if (preg_match('/http:\/\/([^\/]+)\//i', $target_string, $matches)) {
      $domain = $matches[1];
    }
    

提交回复
热议问题