PHPBB 标签中的这些字符代表什么?

发布于 2025-01-01 21:54:56 字数 390 浏览 2 评论 0原文

我正在将使用 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 技术交流群。

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

发布评论

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

评论(1

安人多梦 2025-01-08 21:54:56

phpBB 3.x 为所有 BBCode 标签添加了唯一的 id(每个帖子唯一)。这是为了提高解析性能。要删除 uid 标记,您可以使用 decode_message

$clean_message = decode_message($row['message'], $row['bbcode_uid']);

希望有帮助。

资源

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.

$clean_message = decode_message($row['message'], $row['bbcode_uid']);

Hope that helps.

Resources

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