Example #1
0
<?php

require_once __DIR__ . '/../vendor/autoload.php';
use Vamsi\HTMLToBBCode\HtmlConverter;
$converter = new HtmlConverter();
$html = '<a href="http://www.w3schools.com">Visit W3Schools</a>
<a href="https://www.github.com">Visit Github</a>
<a href="http://www.google.com">Visit Google</a>
<a href="http://www.google.com"></a>';
$bbcode = $converter->convert($html);
echo $bbcode;
 private function html_gives_bbcode($html, $expected_bb_code, array $options = array())
 {
     $bbcode = new HtmlConverter();
     $result = $bbcode->convert($html);
     $this->assertEquals($expected_bb_code, $result);
 }