Created
December 6, 2017 01:44
-
-
Save ifnull/eb9bcab5bac05ae9831d00123f4427ca to your computer and use it in GitHub Desktop.
PHP Naming Conventions by Project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
╔═══════════════════════╦═════════════╦════════════╦══════════════╦════════════╦════════════╗ | |
║ PHP Project ║ Classes ║ Methods ║ Properties ║ Functions ║ Variables ║ | |
╠═══════════════════════╬═════════════╬════════════╬══════════════╬════════════╬════════════╣ | |
║ Akelos Framework ║ PascalCase ║ camelCase ║ camelCase ║ lower_case ║ lower_case ║ | |
║ CakePHP Framework ║ PascalCase ║ camelCase ║ camelCase ║ camelCase ║ camelCase ║ | |
║ CodeIgniter Framework ║ Proper_Case ║ lower_case ║ lower_case ║ lower_case ║ lower_case ║ | |
║ Concrete5 CMS ║ PascalCase ║ camelCase ║ camelCase ║ lower_case ║ lower_case ║ | |
║ Doctrine ORM ║ PascalCase ║ camelCase ║ camelCase ║ camelCase ║ camelCase ║ | |
║ Drupal CMS ║ PascalCase ║ camelCase ║ camelCase ║ lower_case ║ lower_case ║ | |
║ Joomla CMS ║ PascalCase ║ camelCase ║ camelCase ║ camelCase ║ camelCase ║ | |
║ modx CMS ║ PascalCase ║ camelCase ║ camelCase ║ camelCase ║ lower_case ║ | |
║ Pear Framework ║ PascalCase ║ camelCase ║ camelCase ║ ║ ║ | |
║ Prado Framework ║ PascalCase ║ camelCase ║ Pascal/camel ║ ║ lower_case ║ | |
║ SimplePie RSS ║ PascalCase ║ lower_case ║ lower_case ║ lower_case ║ lower_case ║ | |
║ Symfony Framework ║ PascalCase ║ camelCase ║ camelCase ║ camelCase ║ camelCase ║ | |
║ WordPress CMS ║ ║ ║ ║ lower_case ║ lower_case ║ | |
║ Zend Framework ║ PascalCase ║ camelCase ║ camelCase ║ camelCase ║ camelCase ║ | |
╚═══════════════════════╩═════════════╩════════════╩══════════════╩════════════╩════════════╝ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment