比较同一域的两个字符串(url)

发布于 2024-12-05 07:34:43 字数 317 浏览 2 评论 0原文

我正在尝试使用 PHP 比较两个 url,确保域名相同。它不能是子域。它实际上必须是同一个域。示例:

http://www.google.co.uk/pages 相比,http://www.google.co.uk 将验证为 true。 html.

http://www.something.co.uk/pages.html 相比,http://www.google.co.uk 将验证为 false

I'm trying to compare two urls using PHP, ensuring that the domain name is the same. It cannot be the sub-domain. It has to literally be the same domain. Example:

http://www.google.co.uk would validate as true compared to http://www.google.co.uk/pages.html.

but

http://www.google.co.uk would validate as false compared to http://www.something.co.uk/pages.html.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

Saygoodbye 2024-12-12 07:34:44

使用 parse_url(),并比较两次调用 parse_url() 返回的数组中的“host”索引)

Use parse_url(), and compare the "host" index in the array returned from the two calls to parse_url().

荆棘i 2024-12-12 07:34:44

使用 parse_url()

$url1 = parse_url("http://www.google.co.uk");
$url2 = parse_url("http://www.google.co.uk/pages.html");

if ($url1['host'] == $url2['host']){
   //matches
}

Use parse_url()

$url1 = parse_url("http://www.google.co.uk");
$url2 = parse_url("http://www.google.co.uk/pages.html");

if ($url1['host'] == $url2['host']){
   //matches
}
尘世孤行 2024-12-12 07:34:44

简单,使用parse_url()

$url1 = parse_url('http://www.google.co.uk');
$url2 = parse_url('http://www.google.co.uk/pages.html');

if($url1['host'] == $url2['host']){
    // same domain
}

simple, use parse_url()

$url1 = parse_url('http://www.google.co.uk');
$url2 = parse_url('http://www.google.co.uk/pages.html');

if($url1['host'] == $url2['host']){
    // same domain
}
深爱成瘾 2024-12-12 07:34:44

您可以使用 parse_url 来实现此目的

$url1 = parse_url('http://www.google.com/page1.html');
$domain1 = $url1['host'];

$url2 = parse_url('http://www.google.com/page2.html');
$domain2 = $url2['host'];

if($domain1 == $domain2){
// something
}

You could use parse_url for this

$url1 = parse_url('http://www.google.com/page1.html');
$domain1 = $url1['host'];

$url2 = parse_url('http://www.google.com/page2.html');
$domain2 = $url2['host'];

if($domain1 == $domain2){
// something
}
≈。彩虹 2024-12-12 07:34:44

扩展 Ariel 给出的答案,您可以使用的代码类似于以下代码:

<?php

compare_host('http://www.google.co.uk', 'http://www.something.co.uk/pages.html');

function compare_host($url1, $url2)
{
    // PHP prior of 5.3.3 emits a warning if the URL parsing failed.
    $info = @parse_url($url1);
    if (empty($info)) {
        return FALSE;
    }
    $host1 = $info['host'];
    $info = @parse_url($url2);
    if (empty($info)) {
        return FALSE;
    }
    return (strtolower($host1) === strtolower($info['host']));
}

Expanding the answer given by Ariel, the code you could use is similar to the following one:

<?php

compare_host('http://www.google.co.uk', 'http://www.something.co.uk/pages.html');

function compare_host($url1, $url2)
{
    // PHP prior of 5.3.3 emits a warning if the URL parsing failed.
    $info = @parse_url($url1);
    if (empty($info)) {
        return FALSE;
    }
    $host1 = $info['host'];
    $info = @parse_url($url2);
    if (empty($info)) {
        return FALSE;
    }
    return (strtolower($host1) === strtolower($info['host']));
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文