PHP preg 匹配 *.domain.com 或 *.domain.co.uk
我使用此代码来预匹配 *.domain.com,但需要将其更改为还包括具有一些句点(例如 *.domain.co.uk)的外部域。任何帮助表示赞赏,谢谢
if (trim(preg_match('!^https?://([^/]+\.)?domain\.com(/|#|$)!i', $documentLink->getAttribute('href'))))
只是一个更新,我希望匹配 *.domain.(任何 TLD)而不仅仅是 co.uk
谢谢
I'm using this code to preg match for *.domain.com but need it changed to also include foreign domains which have a few periods like *.domain.co.uk. Any helps appreciated thanks
if (trim(preg_match('!^https?://([^/]+\.)?domain\.com(/|#|$)!i', $documentLink->getAttribute('href'))))
Just an update that i'm looking to match *.domain.(any TLD) not just co.uk
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)