Golonka\BBCode\BBCodeParser::stripBBCodeTags PHP Method

stripBBCodeTags() public method

Remove all BBCode
public stripBBCodeTags ( string $source ) : string
$source string
return string Parsed text
    public function stripBBCodeTags($source)
    {
        foreach ($this->parsers as $name => $parser) {
            $source = $this->searchAndReplace($parser['pattern'] . 'i', $parser['content'], $source);
        }
        return $source;
    }