使用 REGEX 查找子域并添加 WWW
我正在使用以下代码验证并将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用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
我得到了这个:
另请参阅:
I got this:
See also:
如果没有 TLD 查找表,我想您可以做到这一点的唯一方法是您已经知道您的域名:
Without TLD lookup tables, the only way I imagine you can do this is if you know your domain already: