jeyroik/extas-parsers

此包最新版本(0.5.0)没有可用的许可证信息。

Extas 解析器包

This package is auto-updated.

Last update: 2024-09-15 19:46:24 UTC


README

tests codecov.io PHPStan Enabled Extas Installer v3 Latest Stable Version Total Downloads Dependents

描述

此包提供解析器。

使用

$parser = SystemContainer::getItem(IParserRepository::class);
$text = 'Some text with @placeholders or anything {else}';
if ($parser->canParse($text)) {
    echo $parser->parse($text);
}