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

This package is auto-updated.

Last update: 2025-07-07 20:07:36 UTC


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);