PHPBB 标签中的这些字符代表什么?
我正在将使用 PHPBB 论坛的网站迁移到新的微软平台,该平台不使用相同的标签标记(例如粗体、斜体、图像等)。
我刚刚注意到在现有 PHPBB 站点的 MySql 数据库中,许多标签中包含了我不希望看到的附加字符,而且我不知道它们的用途是什么。
例如:
[b:522f1e2c15]bold[/b:522f1e2c15]
[i:522f1e2c15]italic[/i:522f1e2c15]
[u:522f1e2c15]underline[/u:522f1e2c15]
我期望看到:
[b]bold[/b]
[i]italic[/i]
[u]underline[/u]
这些附加字符的目的是什么?
I'm in the process of migrating a website using PHPBB forums to a new microsoft platform that doesn't use the same tag markup (for things like Bold, Italic, Images etc).
I've just noticed in the MySql database for the existing PHPBB site, that enclosed within many of the tags are additional characters that I wasn't expecting to see, and I don't know what their purpose is.
For example:
[b:522f1e2c15]bold[/b:522f1e2c15]
[i:522f1e2c15]italic[/i:522f1e2c15]
[u:522f1e2c15]underline[/u:522f1e2c15]
I was expecting to see:
[b]bold[/b]
[i]italic[/i]
[u]underline[/u]
What's the purpose of these additional characters?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
phpBB 3.x 为所有 BBCode 标签添加了唯一的 id(每个帖子唯一)。这是为了提高解析性能。要删除 uid 标记,您可以使用
decode_message
。希望有帮助。
资源
phpBB 3.x adds a unique id (unique per post) to all BBCode tags. This is to improve parsing performance. To remove the uid markers, you can use
decode_message
.Hope that helps.
Resources