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 index.php's
Inflector::singularize index.php'
Inflector::camelize Index.php'
Inflector::underscore index.php'
Inflector::humanize Index.php'
Inflector::tableize index.php's
Inflector::classify Index.php'
Inflector::variable index.php'
Inflector::slug index_php

CakePHP Conventions

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