Todo List
This class provides static methods to implement the Trax naming convention. Inflector is never instantiated.
[line 44]
[line 63]
string camelize( string $lower_case_and_underscored_word)
string capitalize( string $word)
string classify( string $table_name)
string foreign_key( mixed $class_name, string $table_name)
string humanize( string $lower_case_and_underscored_word)
string pluralize( string $word)
Convert a lower-case singular word to plural form.
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 underscore( string $camel_cased_word)