如何使用php检查url的特定部分

时间:2013-09-28 14:49:27

标签: php url

我在变量中有一个网址。

<?php
$a='www.example.com';
?>

我有另一个变量,就像这样

<?php
$b='example.com';
?>

我可以通过什么方式检查$ b和$ a是否相同。我的意思是即使$ b中的url就像

'example.com/test','example.com/test.html','www.example.com/example.html'

在这种情况下,我需要检查$ b是否等于$ a。如果它与example.net/example.org一样,域名发生变化,则应返回false。 我查看了strposstrcmp。但我没有发现这是检查url的正确方法。在这种情况下,我可以用什么函数检查$ b是否与$ a类似?

3 个答案:

答案 0 :(得分:1)

您可以使用parse_url执行繁重的工作,然后将主机名拆分为点,检查后两个元素是否相同:

$url1 = parse_url($url1);
$url2 = parse_url($url2);

$host_parts1 = explode(".", $url1["host"]);
$host_parts2 = explode(".", $url2["host"]);

if ($host_parts1[count($host_parts1)-1] == $host_parts2[count($host_parts2)-1] &&
   ($host_parts1[count($host_parts1)-2] == $host_parts2[count($host_parts2)-2]) {
   echo "match";
} else {
   echo "no match";
}

答案 1 :(得分:1)

您可以使用parse_url来解析URL并获取根域,如下所示:

  • http://添加到网址(如果尚未存在)
  • 使用PHP_URL_HOST常量
  • 获取网址的主机名部分
  • explode网址加点(.
  • 使用array_slice
  • 获取数组的最后两个块
  • 内嵌结果数组以获取根域

我做的一个小功能(这是我自己的答案here的修改版本):

function getRootDomain($url) 
{
    if (!preg_match("~^(?:f|ht)tps?://~i", $url)) {
        $url = "http://" . $url;
    }

    $domain = implode('.', array_slice(explode('.', parse_url($url, PHP_URL_HOST)), -2));
    return $domain;
}

测试用例:

$a = 'http://example.com';
$urls = array(
    'example.com/test',
    'example.com/test.html',
    'www.example.com/example.html',
    'example.net/foobar', 
    'example.org/bar'
    );

foreach ($urls as $url) {
    if(getRootDomain($url) == getRootDomain($a)) {
        echo "Root domain is the same\n";
    }
    else {
        echo "Not same\n";
    }
}

输出:

Root domain is the same
Root domain is the same
Root domain is the same
Not same
Not same

注意:此解决方案并非万无一失,并且对于example.co.uk等网址可能会失败,您可能需要进行其他检查以确保不会发生这种情况。

Demo!

答案 2 :(得分:0)

我认为这个答案可以提供帮助:Searching partial strings PHP

因为这些网址只是字符串