uogh1400/string_utils

Simple string utils for dealing easier with them

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

This package is auto-updated.

Last update: 2025-06-07 06:57:53 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']));