hametuha/string-utility

PHP traits of string helper functions.

Installs: 14 402

Dependents: 3

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 1

Open Issues: 0

pkg:composer/hametuha/string-utility

1.2.0 2022-11-30 07:30 UTC

This package is auto-updated.

Last update: 2025-09-29 02:28:23 UTC


README

PHP utility traits of string related functions.

Travis CI

Installation

composer require hametuha/string-utility

How To Use

<?php

MyClass {

    use Hametuha\StringUtility\NamingConventions;
}


$my_instance = new MyClass();

echo $my_instance->camel_to_kebab( 'MyClassName' );
// -> 'my-class-name'

Lisence

GPL 3.0 or later.