mamadzirone/strutils

Simple string utils for dealing easier with them

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/mamadzirone/strutils

v1.0.0 2021-09-07 17:28 UTC

This package is auto-updated.

Last update: 2025-10-28 14:48:05 UTC


README

Simple string utils for dealing easier with them

Installation

Install using composer:

composer require mamadzirone/strutils ‌

Example

    <?php

    require __DIR__.'/vendor/autoload.php';

    use \QueraCollege\StringUtils\Str;

    var_dump(Str::contains('abcd', ['ab', 'x']));
‌