PHP - 想要检查用户输入中是否包含网站地址
我希望每当用户插入“www”时。在评论文本区域中,地址来自“www”。直到第一个空格被替换为该地址的链接:
"I love www.google.com"
turns into
"I love <a href="www.google.com">www.google.com</a>"
您能告诉我该怎么做吗? (新手)
(很抱歉发布之前的问题,我仍然不太明白)。
我应该使用 preg_match_all()
吗?
I want that whenver a user inserts "www." in a comment textarea, the address from "www." until the first space will be a replaced with a link to that address:
"I love www.google.com"
turns into
"I love <a href="www.google.com">www.google.com</a>"
Can you please tell me how to do this? (newbie)
(sorry for posting the earlier question I still don't quite get it).
Should I use preg_match_all()
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试:
Try:
BAH先于我。
BAH beat me to the punch.