我只需要获取域名只形成一个 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
这篇关于如何获取没有www、子域和com/net/org/etc的域名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!