Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 757 Bytes

README_RU.md

File metadata and controls

25 lines (16 loc) · 757 Bytes

text-matcher

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()){
    //...
}