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 bbs,1714004023s
Inflector::singularize bbs,1714004023
Inflector::camelize Bbs,1714004023
Inflector::underscore bbs,1714004023
Inflector::humanize Bbs,1714004023
Inflector::tableize bbs,1714004023s
Inflector::classify Bbs,1714004023
Inflector::variable bbs,1714004023
Inflector::slug bbs_1714004023

CakePHP Conventions

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