Todo List
This class provides static methods to implement the Trax naming convention. Inflector is never instantiated.
string camelize( string $lower_case_and_underscored_word)
string capitalize( string $word)
string classify( string $table_name)
string dasherize( string $underscored_word)
string foreign_key( $class_name, string $table_name)
string humanize( string $lower_case_and_underscored_word)
string ordinalize( integer $number)
string pluralize( string $word, [int $count = 0])
Convert a lower-case singular word to plural form. If $count > 0 then prefixes $word with the $count
string singularize( string $word)
string tableize( string $class_name)
The class name is a singular word or phrase in CamelCase. By convention it corresponds to a table whose name is a plural word or phrase in lower case underscore form.
string titleize( string $word)
string underscore( string $camel_cased_word)