A small library for object-oriented string manipulation with PHP.
A small library for string manipulation with PHP. SimpleString uses method overloading to create an object-oriented interface for the built-in string functions in PHP. It implements a fluent interface, improving how we manipulate strings, and extends functionality by providing common implementations. It also aims to eliminate the problems of unorganized function names., (*2)
SimpleString also uses overloading to create an object-oriented interface for built-in string functions. Functions starting with str or str_ can just be used with their actual name, not prefix. So: strtolower = tolower, str_replace = replace. Functions whose return values are not string are invalid and will throw exceptions., (*3)
New BSD license, (*4)
The idea behind SimpleString is to keep things very easy to use, while giving lot's of power to the user. Check it out:, (*5)
<?php use Simple\Type\String; // Example $string = new String('Lorem ipsum dolor sit amet lorem ipsum'); $string->shorten(10); $string->toSentenceCase(); echo $string; // Fluent interface example $string = new String('Lorem ipsum dolor sit amet lorem ipsum'); $string->shorten(15)->toCamelCase(); echo $string; /** * SimpleString also uses overloading to create an object-oriented * interface for built-in string functions. Functions starting with * str or str_ can just be used with their actual name, not prefix. * * So: strtolower = tolower, str_replace = replace. * * Functions whose return values are not string are invalid and will * throw exceptions. */ $string = new String('Lorem ipsum dolor sit amet lorem ipsum'); $string->tolower()->replace('lorem', 'mortem'); echo $string;