uogh1400/string_utils

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/uogh1400/string_utils

v1.0.0 2021-11-06 23:08 UTC

This package is auto-updated.

Last update: 2025-12-07 08:15:22 UTC


README

Simple string utils for dealing easier with them

Installation

Install using composer:

composer require uogh1400/string_utils ‌

Example

<?php

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

use \Uogh1400\StringUtils\Str;

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