connectmusistic/php-string-helper

A lightweight PHP string helper library for everyday use.

v1.0.0 2025-08-18 20:17 UTC

This package is auto-updated.

Last update: 2025-08-18 20:39:55 UTC


README

Lightweight PHP string helpers.

Install

composer require connectmusistic/php-string-helper

Usage

use Connectmusistic\StringHelper\StringHelper as S;
S::snake("Hello World");       // hello_world
S::studly("hello_world");      // HelloWorld
S::limit("Long message...", 8);// Long mes...