mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-06 10:33:10 +09:00
11 lines
369 B
PHP
11 lines
369 B
PHP
<?php
|
|
require_once "/path/to/jbbcode/Parser.php";
|
|
|
|
$parser = new JBBCode\Parser();
|
|
$parser->addCodeDefinitionSet(new JBBCode\DefaultCodeDefinitionSet());
|
|
|
|
$text = "[b][u]There is [i]a lot[/i] of [url=http://en.wikipedia.org/wiki/Markup_language]markup[/url] in this";
|
|
$text .= "[color=#333333]text[/color]![/u][/b]";
|
|
$parser->parse($text);
|
|
|
|
print $parser->getAsText();
|