queracollege/string-utils

Simple string utils for dealing easier with them

Maintainers

Package info

github.com/queracollege/string-utils

pkg:composer/queracollege/string-utils

Statistics

Installs: 21

Dependents: 0

Suggesters: 0

Stars: 2

Open Issues: 0

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

This package is not auto-updated.

Last update: 2026-03-01 19:09:24 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']));