labile/text-matcher

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

1.0.1 2021-08-14 11:17 UTC

This package is auto-updated.

Last update: 2024-09-09 15:06:05 UTC


README

GitHub license Packagist Stars Packagist Stats

俄语文档

安装

composer require labile/text-matcher

一个简单的字符串比较库

<?php

declare(strict_types=1);

use Astaroth\TextMatcher;

$textMatcher = new TextMatcher("i love Katya", "love", TextMatcher::CONTAINS);
if ($textMatcher->compare()){
    //...
}