vBulletin 外部页面BBCode

发布于 2024-08-26 00:27:05 字数 88 浏览 7 评论 0原文

我将 vBulletin 与自定义首页集成。我想知道如何在该页面上使用 vBulletin BBcode(我在那里显示一些帖子)。

有什么建议吗?

I integrated my vBulletin with custom front page. I'm wondering, how could I use vBulletin BBcode on that page (I'm displaying some posts there).

Any suggestions?

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

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

发布评论

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

评论(1

溇涏 2024-09-02 00:27:05

最好只使用 vBulletin 本身的 BBCode 解析器。它相对容易使用,这里有一个例子:

require_once('global.php');
require_once('includes/class_bbcode.php');

$parser = new vB_BbCodeParser($vbulletin, fetch_tag_list());
$text = $parser->parse('[B][I]text[/I][/B]');
print $text;

您可能需要使用 chdir 玩游戏,以包含 vBulletin 树之外某处的 global.php,但我确信您无论如何,对于其他集成都必须这样做。 :)

也有限制标签的方法,只需翻阅 class_bbcode.php,您就会看到一些相当明显的起点。

It's probably best to just use the BBCode parser from vBulletin itself. It's relatively easy to use, here's an example:

require_once('global.php');
require_once('includes/class_bbcode.php');

$parser = new vB_BbCodeParser($vbulletin, fetch_tag_list());
$text = $parser->parse('[B][I]text[/I][/B]');
print $text;

You may need to play games with chdir to include global.php from somewhere outside the vBulletin tree, but I'm sure you've had to do that for other integration anyway. :)

There are way of restricting the tags too, just have a rummage around class_bbcode.php and you'll see some fairly obvious places to start.

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