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 aggregates
Inflector::singularize aggregate
Inflector::camelize Aggregate
Inflector::underscore aggregate
Inflector::humanize Aggregate
Inflector::tableize aggregates
Inflector::classify Aggregate
Inflector::variable aggregate
Inflector::slug aggregate

CakePHP Conventions

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