将 BBCode [url] 标签转换为可点击的 HTML 链接

发布于 2024-08-14 14:18:59 字数 698 浏览 5 评论 0原文

我对其他 BBCode 使用 str_replace() ,但我坚持使用 url 部分。

我需要转换:

[url=http://maps.google.com/maps?ie=UTF-8&oe=utf-8&rls=org.mozilla:en-US:official&client=firefox-a&um=1&q=brits+pub&near=Pasadena,+CA&fb=1&cid=0,0,17926180203917841249&sa=X&oi=local_result&resnum=1&ct=image]Brits[/url]

<a href="ttp://maps.google.com/maps?ie=UTF-8&oe=utf-8&rls=org.mozilla:en-US:official&client=firefox-a&um=1&q=brits+pub&near=Pasadena,+CA&fb=1&cid=0,0,17926180203917841249&sa=X&oi=local_result&resnum=1&ct=image">Brits</a>

I was using str_replace() for other BBCodes, but I'm stuck with the url portion.

I need to convert:

[url=http://maps.google.com/maps?ie=UTF-8&oe=utf-8&rls=org.mozilla:en-US:official&client=firefox-a&um=1&q=brits+pub&near=Pasadena,+CA&fb=1&cid=0,0,17926180203917841249&sa=X&oi=local_result&resnum=1&ct=image]Brits[/url]

to

<a href="ttp://maps.google.com/maps?ie=UTF-8&oe=utf-8&rls=org.mozilla:en-US:official&client=firefox-a&um=1&q=brits+pub&near=Pasadena,+CA&fb=1&cid=0,0,17926180203917841249&sa=X&oi=local_result&resnum=1&ct=image">Brits</a>

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

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

发布评论

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

评论(2

萌逼全场 2024-08-21 14:18:59

您为什么不看看其他 BBCode 解析器

无论如何,仅仅替换标签是不够的,因为这可能(并且将会)导致错误的标记。

Why don't you take a look at other BBCode parsers?

Just replacing tags isn't sufficient anyways, since this can (and will) lead to incorrect markup.

嗼ふ静 2024-08-21 14:18:59

实际上已经有一个很好的问题了:解析 bbcode 的最佳方法

另外,建议尝试使用已有的 BBCode 解析器库来尝试制作自己的解析器库。

There is actually a good SO question about this already: Best way to parse bbcode.

Also, using an already existing BBCode parser library is advisable to attempting to making your own.

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