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 match,1714010371s
Inflector::singularize match,1714010371
Inflector::camelize Match,1714010371
Inflector::underscore match,1714010371
Inflector::humanize Match,1714010371
Inflector::tableize match,1714010371s
Inflector::classify Match,1714010371
Inflector::variable match,1714010371
Inflector::slug match_1714010371

CakePHP Conventions

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