如何使用 PHP 将单词转换为字符串中的链接?
如果我有一个段落包含纯 URL(没有锚点)。如何将这些 URL 封装在标签中?
例如:
$string = "visit http://blabla.com to get something";
那么我怎样才能做到这一点:
visit http://blabla.com得到一些东西
谢谢!
If I have a paragraph with contains plain URLs (without the anchors). How can I wrap those URLs within a tags?
For example:
$string = "visit http://blabla.com to get something";
So how could I make that as:
visit <a href="http://blabla.com">http://blabla.com</a> to get something
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者在函数中
您可以忽略 $1 。它被分配给与正则表达式匹配的文本。在本例中为 URL。
Or in a function
You can ignore the $1 . It is assigned to the text matched by the regular expression. In this case, the URL.
这是我用来执行此操作的函数,我没有编写它,请参阅源代码
this is the function i use to do that, i did not write it, see code for source