connectmusistic/php-string-helper

A lightweight PHP string helper library for everyday use.

Maintainers

Package info

github.com/connectmusistic-prog/php-string-helper

pkg:composer/connectmusistic/php-string-helper

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

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

This package is auto-updated.

Last update: 2026-03-18 22:16:24 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...