使用 REGEX 查找子域并添加 WWW

发布于 2024-10-11 21:59:16 字数 610 浏览 5 评论 0原文

我正在使用以下代码验证并将 http (或 https)添加到我的 URL 变量:

$url = preg_replace("/[^A-Za-z0-9-\/\.\:]/", "", trim($url));
$url = preg_replace('%^(?!https?://).*%', 'http://$0', $url);

但这对我来说还不够。我还需要再迈出一步。我必须检查子域。如果没有任何子域,请添加 www

例如,如果没有任何子域并且 (在这2个preg_replace()之后)如果$url是:http://example.com,转换为http://WWW。 example.com。如果 $url 是:http://www.example.com,请勿触摸。

(请使用 preg_replace)

摘要如果 $url 没有子域和 www ,请添加 www

I'm validating and adding http (or https) to my URL variable with this code :

$url = preg_replace("/[^A-Za-z0-9-\/\.\:]/", "", trim($url));
$url = preg_replace('%^(?!https?://).*%', 'http://$0', $url);

But this isn't enough for me. I need one more step , too . I have to check subdomain. If there isn't any subdomain add www.

For example if there isn't any subdomain and
(after this 2 preg_replace()) if $url is : http://example.com , convert to http://WWW.example.com. If $url is : http://www.example.com, don't touch.

(with preg_replace please)

IN SUMMARY if $url hasn't subdomain and www , add www .

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

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

发布评论

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

评论(3

半衬遮猫 2024-10-18 21:59:16

使用php的url解析器可能更容易。

http://www.php.net/manual/en/function.parse -url.php

may be easier to use php's url parser.

http://www.php.net/manual/en/function.parse-url.php

多彩岁月 2024-10-18 21:59:16

我得到了这个:

$url = 'http://teknoblogo.com';
$host = parse_url($url, PHP_URL_HOST);
$arr = explode('.', $host);

echo http_build_url($url,
    array(
        'host' => !preg_match('/^www\d*\.$/i', $arr[0]) && count($arr) <= 2 ? 'www.' . $host : $host
    )
);

另请参阅:

I got this:

$url = 'http://teknoblogo.com';
$host = parse_url($url, PHP_URL_HOST);
$arr = explode('.', $host);

echo http_build_url($url,
    array(
        'host' => !preg_match('/^www\d*\.$/i', $arr[0]) && count($arr) <= 2 ? 'www.' . $host : $host
    )
);

See also:

撩人痒 2024-10-18 21:59:16

如果没有 TLD 查找表,我想您可以做到这一点的唯一方法是您已经知道您的域名:

$domain = 'example.com';

$url = preg_replace('~^(https?://)(' . preg_quote($domain, '~') . ')(.*)~i', '$1www.$2$3');

Without TLD lookup tables, the only way I imagine you can do this is if you know your domain already:

$domain = 'example.com';

$url = preg_replace('~^(https?://)(' . preg_quote($domain, '~') . ')(.*)~i', '$1www.$2$3');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文