drozg / hillel-composer
The package will count how many times "Hillel" was mentioned in a text
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/drozg/hillel-composer
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);