vbulletin 中的 bbcode 到 html
vbulletin中将bbcode转换为html的函数是什么?
我发现这个:convert_wysiwyg_html_to_bbcode(),但它是将html转换为bbcode,我想要这个函数的相反函数。
What is the function in vbulletin that convert bbcode to html ??
I found this : convert_wysiwyg_html_to_bbcode() but it's convert html to bbcode, I want the opposite of this function.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我最近使用 这个 bb2html 解析器 将日历事件从 vBulletin 转换到另一个平台。
vBulletin 使用类
vB_BbCodeParser
进行转换。在我旧的 vBulletin 安装中,位于includes/class_bbcode.php
I have recently used this bb2html parser to convert calendar events from vBulletin to another platform.
vBulletin uses a class
vB_BbCodeParser
to do its conversions. In my old vBulletin installation, that is inincludes/class_bbcode.php
您可以通过使用
str_replace
将 bbcode 替换为相应的 html 标签来完成此操作You can do this by replacing bbcode with corresponding html tags by using
str_replace