php-extended/php-bbcode-object
最新稳定版本:8.0.10
Composer 安装命令:
composer require php-extended/php-bbcode-object
包简介
A library that implements the php-extended/php-bbcode-interface interface library.
README 文档
README
A library that implements the php-extended/php-bbcode-interface interface library.
Installation
The installation of this library is made via composer and the autoloading of all classes of this library is made through their autoloader.
- Download
composer.pharfrom their website. - Then run the following command to install this library as dependency :
php composer.phar php-extended/php-bbcode-object ^8
Basic Usage
To build a bbcode tree, just use the collection node and the single nodes :
use PhpExtended\Bbcode\BbcodeCollectionNode;
use PhpExtended\Bbcode\BbcodeSingleNode;
use PhpExtended\Bbcode\BbcodeTextNode;
$_1 = new BbcodeCollectionNode('center');
$_2 = new BbcodeCollectionNode('url', 'https://example.com');
$_1->addNode($_2);
$_3 = new BbcodeSingleNode('img', 'https://example.com/toto.png');
$_2->addNode($_3);
$_4 = new BbcodeTextNode('An image of Toto');
$_2->addNode($_4);
$_1->__toString();
// echo [center][url=https://example.com][img]https://example.com/toto.png[/img]An image of Toto[/url][/center]
Note: the use of the BbcodeAbstractNode::TYPE_TEXT in a BbcodeCollectionNode
will disable the output of the tags in the __toString() method. This may
be useful to have collections that are not encapsulated in tag data, like the
root of a bbcode node tree.
use PhpExtended\Bbcode\BbcodeParser;
$parser = new BbcodeParser()
$root = $parser->parse('<data>');
// $root is now a BbcodeCollectionNodeInterface
License
MIT (See license file).
统计信息
- 总下载量: 7.45k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-03-02