This site is built library CakePHP "Inflector" test site.

※ This site is using the CakePHP 1.2.6.

The result of running Inflector

Inflector::pluralize otherTranslations
Inflector::singularize otherTranslation
Inflector::camelize OtherTranslation
Inflector::underscore other_translation
Inflector::humanize OtherTranslation
Inflector::tableize other_translations
Inflector::classify OtherTranslation
Inflector::variable otherTranslation
Inflector::slug otherTranslation

CakePHP Conventions

model
Model Name OtherTranslation UpperCamelCase,single
Inflector::singularize(Inflector::classify($word));
Model's FileName othertranslation.php underscored,lower,single
Inflector::singularize(Inflector::slug(strtolower($word))).'.php';
Table Name othertranslations underscored,lower,plural
Inflector::pluralize(Inflector::slug(strtolower($word)));
controller
Controller Name OtherTranslations UpperCamelCase,plural
Inflector::pluralize(Inflector::classify($word));
Controller's ClassName OtherTranslationsController UpperCamelCase,plural,with 'Controller'
Inflector::pluralize(Inflector::classify($word)).'Controller';
Controller's FileName othertranslations_controller.php underscored,lower,plural,with '_controller'
Inflector::pluralize(Inflector::slug(strtolower($word))).'_controller.php';
for uses OtherTranslation Model Name
Inflector::singularize(Inflector::classify($word));
view
View Folder othertranslations underscored,lower,plural
Inflector::pluralize(Inflector::slug(strtolower($word)));
View's FileName othertranslation.php underscored,lower,single
Inflector::singularize(Inflector::slug(strtolower($word))).'.php';

"Inflector" is?

The Inflector class takes a string and can manipulate it to handle word variations such as pluralizations or camelizing and is normally accessed statically.Example: Inflector::pluralize('example'); returns "examples".(From the official site

References

Similar sites can