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

※ This site is using the CakePHP 2.7.5.

The result of running Inflector

Inflector::pluralize user,1714011725s
Inflector::singularize user,1714011725
Inflector::camelize User,1714011725
Inflector::underscore user,1714011725
Inflector::humanize User,1714011725
Inflector::tableize user,1714011725s
Inflector::classify User,1714011725
Inflector::variable user,1714011725
Inflector::slug user_1714011725

CakePHP Conventions

model
Model Name User,1714011725 UpperCamelCase,single
Inflector::singularize(Inflector::classify($word));
Model's FileName User,1714011725.php UpperCamelCase,single
Inflector::singularize(Inflector::classify($word)).'.php';
Table Name user,1714011725s underscored,lower,plural
Inflector::tableize($word);
controller
Controller Name User,1714011725s UpperCamelCase,plural
Inflector::pluralize(Inflector::classify($word));
Controller's ClassName User,1714011725sController UpperCamelCase,plural,with 'Controller'
Inflector::pluralize(Inflector::classify($word)).'Controller';
Controller's FileName User,1714011725sController.php UpperCamelCase,plural,with 'Controller'
Inflector::pluralize(Inflector::classify($word)).'Controller.php';
for uses User,1714011725 Model Name
Inflector::singularize(Inflector::classify($word));
view
View Folder User,1714011725s Controller Name
Inflector::pluralize(Inflector::classify($word));
View's FileName user,1714011725.php Action Name
Inflector::underscore($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