PHP 从URL获取域名

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 从URL获取域名相关的知识,希望对你有一定的参考价值。

<?php
// get host name from URL
preg_match('@^(?:http://)?([^/]+)@i',
    "http://www.php.net/index.html", $matches);
$host = $matches[1];

// get last two segments of host name
preg_match('/[^.]+\.[^.]+$/', $host, $matches);
echo "domain name is: {$matches[0]}\n";
?>

以上是关于PHP 从URL获取域名的主要内容,如果未能解决你的问题,请参考以下文章

php 获取顶级域名

php 获取域名等Url

PHP获取来路域名

PHP怎么获取来源域名

Python获取url中域名及从域名中提取ip的方法

PHP中获取当前页面的URL信息