将 BBCode [url] 标签转换为可点击的 HTML 链接
我对其他 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您为什么不看看其他 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.
实际上已经有一个很好的问题了:解析 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.