PHP code example of gemorroj / xbbcode
1. Go to this page and download the library: Download gemorroj/xbbcode library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
gemorroj / xbbcode example snippets
use Xbbcode\Xbbcode;
$text = 'Это [b]пример[/b] работы парсера [url=https://github.com/Gemorroj/xBBCode]xBBCode[/url].';
$xbbcode = new Xbbcode();
$xbbcode->parse($text);
echo $xbbcode->getHtml();