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

来源:互联网 发布:基于单片机电子密码锁 编辑:程序博客网 时间:2024/05/16 02:10

文件名、类名约定

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

例:假如有一个类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