hassanhs97/string-utils

Simple string utils for dealing easier with them

v1.0.0 2023-03-14 08:21 UTC

This package is not auto-updated.

Last update: 2025-09-24 19:00:31 UTC


README

Simple string utils for dealing easier with them

Installation

Install using composer:

composer require hstring/string-utils ‌

Example

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

use \HString\StringUtils\Str;

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