如何获取没有www、子域和com/net/org/etc的域名

2022-01-04 00:00:00 url php dns

我只需要获取域名只形成一个 url,(没有 com 和其他所有内容)示例:

I just need to get the domain name only form a url, (without com and everything else) example:

我有:

http://www.subdomain.domain1.com/
www.subdomain.domain2.net
subdomain.subdomain2.domain3.org/
http://domain4.com

我想使用 PHP:

domain1
domain2
domain3
domain4

推荐答案

parse_url()

使用PHP_URL_HOST"参数

with the "PHP_URL_HOST" argument

然后在."上explode()并提取结果数组的倒数第二个元素

then explode() on the "." and extract the penultimate element of the resulting array

相关文章