quanzo/x51-shortcode

实现短代码

1.0.0 2019-08-31 08:31 UTC

This package is auto-updated.

Last update: 2024-09-29 05:28:45 UTC


README

添加

$shortcodes = \x51\classes\shortcode\Shortcode::getInstance();
$shortcodes->add('bold', function ($arParams, $content = ''){
    return '<strong>'.$content.'</strong>';
});

处理中

echo $shortcodes->process($content);

移除

$shortcodes->remove('bold');
$shortcodes->clear();

存在

if ($shortcodes->exists('bold')) {
....
}