【CakePHP1.3】_文件名、类名约定

文件名、类名约定

通常,文件名匹配类名,类名采用驼峰命名法。

例:假如有一个类MyNiftyClass,那么它一定在 MyNiftyClass.php文件中

The Controller class KissesAndHugsController would be found in a file named KissesAnd-
HugsController.php
• The Component class MyHandyComponent would be found in a file named MyHandyComponent.
php
• The Model class OptionValue would be found in a file named OptionValue.php
• The Behavior class EspeciallyFunkableBehavior would be found in a file named EspeciallyFunkableBehavior.
php
• The View class SuperSimpleView would be found in a file named SuperSimpleView.php
• The Helper class BestEverHelper would be found in a file named BestEverHelper.php


你可能感兴趣的:(文件名类名约定)