https://github.com/jbtronics/golonkabbcodeparser
A copy of Golonka\BBCode after original repo got deleted (it's a dependency for Part-DB)
https://github.com/jbtronics/golonkabbcodeparser
Last synced: 9 months ago
JSON representation
A copy of Golonka\BBCode after original repo got deleted (it's a dependency for Part-DB)
- Host: GitHub
- URL: https://github.com/jbtronics/golonkabbcodeparser
- Owner: jbtronics
- License: mit
- Created: 2017-12-30T17:12:41.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-30T17:15:03.000Z (over 8 years ago)
- Last Synced: 2025-03-13T03:43:39.059Z (about 1 year ago)
- Language: PHP
- Size: 10.7 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
[](https://github.com/golonka/bbcodeparser/releases)
[](LICENSE.md)
[](https://travis-ci.org/golonka/BBCodeParser)
[](https://scrutinizer-ci.com/g/golonka/bbcodeparser/code-structure)
[](https://scrutinizer-ci.com/g/golonka/bbcodeparser)
[](https://packagist.org/packages/golonka/bbcodeparser)
The ``Golonka\BBCodeParser`` package will help you with parsing BBCode.
## Install
Via Composer
``` bash
$ composer require golonka/bbcodeparser
```
## Usage
To parse some text it's as easy as this!
``` php
$bbcode = new Golonka\BBCode\BBCodeParser;
echo $bbcode->parse('[b]Bold Text![/b]');
// Bold Text!
```
Would like the parser to not use all bbcodes? Just do like this.
``` php
$bbcode = new Golonka\BBCode\BBCodeParser;
echo $bbcode->only('bold', 'italic')
->parse('[b][u]Bold[/u] [i]Italic[/i]![/b]');
// [u]Bold[/u] Italic!
echo $bbcode->except('bold')
->parse('[b]Bold[/b] [i]Italic[/i]');
// [b]Bold[/b] Italic
```
By default the parser is case sensitive. But if you would like the parser to accept tags like `` [B]Bold Text[/B] `` it's really easy.
``` php
$bbcode = new Golonka\BBCode\BBCodeParser;
// Case insensitive
echo $bbcode->parse('[b]Bold[/b] [I]Italic![/I]', true);
// Bold Italic!
// Or like this
echo $bbcode->parseCaseInsensitive('[b]Bold[/b] [i]Italic[/i]');
// Bold Italic!
```
You could also make it more explicit that the parser is case sensitive by using another helper function.
``` php
$bbcode = new Golonka\BBCode\BBCodeParser;
echo $bbcode->parseCaseSensitive('[b]Bold[/b] [I]Italic![/I]');
// Bold [I]Italic![/I]
```
If you would like to completely remove all BBCode it's just one function call away.
``` php
$bbcode = new Golonka\BBCode\BBCodeParser;
echo $bbcode->stripBBCodeTags('[b]Bold[/b] [i]Italic![/i]');
// Bold Italic!
```
## Laravel integration
The integration into Laravel is really easy, and the method is the same for both Laravel 4 and Laravel 5.
Just open your ``app.php`` config file.
In there you just add this to your providers array
``` php
'Golonka\BBCode\BBCodeParserServiceProvider'
```
And this to your facades array
``` php
'BBCode' => 'Golonka\BBCode\Facades\BBCodeParser'
```
The syntax is the same as if you would use it in vanilla PHP but with the ``BBCode::`` before the methods.
Here are some examples.
``` php
// Simple parsing
echo BBCode::parse('[b]Bold Text![/b]');
// Limiting the parsers with the only method
echo BBCode::only('bold', 'italic')
->parse('[b][u]Bold[/u] [i]Italic[/i]![/b]');
// [u]Bold[/u] Italic!
// Or the except method
echo BBCode::except('bold')
->parse('[b]Bold[/b] [i]Italic[/i]');
// [b]Bold[/b] Italic
```
## Testing
``` bash
$ phpunit
```
## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
## Credits
- [Joseph Landberg](https://github.com/golonka)
- [All Contributors](../../contributors)
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.