链接到文本 PHP

发布于 2024-08-23 13:00:53 字数 336 浏览 4 评论 0原文

我已经在使用我在网上找到的这个,因为每当我想编辑信息并且已经有一个通过添加新帖子完成的转换链接时,我需要这个来将链接删除到文本中,然后在提交时要更新,它会使用此函数将其转换为链接。

function Links($text)
{
     $text = preg_replace("#(^|[\n ])([\w]+?://[\w\#$%&~/.\-;:=,?@\[\]+]*)#is", "\\1<a href=\"\\2\" target=\"_blank\">\\2</a>", $text); 
     return $text;
} 

谢谢 :)

I'm already using this which I found on the net, for whenever I want to edit the information and there is already a converted link which is done by adding a new post, I need this to remove the link into text then when it's submitted to be updated, it will use this function to convert it into a link.

function Links($text)
{
     $text = preg_replace("#(^|[\n ])([\w]+?://[\w\#$%&~/.\-;:=,?@\[\]+]*)#is", "\\1<a href=\"\\2\" target=\"_blank\">\\2</a>", $text); 
     return $text;
} 

Thanks :)

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

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

发布评论

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

评论(1

静谧 2024-08-30 13:00:53

使用 strip_tags
strip_tags(“测试”);

Use strip_tags
strip_tags("test");

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文