queracollege/string-utils

Simple string utils for dealing easier with them

v1.0.0 2021-02-19 20:36 UTC

This package is not auto-updated.

Last update: 2024-09-29 12:26:09 UTC


README

Simple string utils for dealing easier with them

Installation

Install using composer:

composer require queracollege/string-utils

Example

<?php

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

use \QueraCollege\StringUtils\Str;

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