PHP >= 5.3.3
A library to make some operations on particular strings and words.
- PHP >= 5.3.3
Can be installed with Composer:
$ composer require ws/inflector
use WS\Libraries\Inflector\Inflector;
echo Inflector::classify('foo bar'); // FooBar
echo Inflector::camelize('foo bar'); // fooBar
echo Inflector::underscore('foo bar'); // foo_bar
- Inflector::pluralize
- Inflector::singularize
This library is release under MIT license.