drozg / hillel-composer
The package will count how many times "Hillel" was mentioned in a text
1.0.1
2022-05-07 13:35 UTC
Requires
- php: >=7.1
README
The package will count how many times "Hillel" was mentioned in a text
Installation
This project using composer.
$ composer require drozg/hillel-composer
Usage
Count the number of "Hillel" occurrences
<?php use Drozg\HillelComposer\HillelCounter; $text = "This library have to return the number of \"Hillel\" occurrences." echo HillelCounter::count($text);