Blogger Information
Blog 2
fans 0
comment 0
visits 1360
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
thinkphp5 命名规范与目录结构
cbread
Original
823 people have browsed it

一 匈牙利命名法 

标识符中每个单词之间用下划线分隔  user_name;

二 驼峰命名法 

标识符中每个单次首字母大写,用大写字母来分隔,又分为两种

1.大驼峰:首字母大写,常用作类名 ClassName, 又称作帕斯卡命名法

2.小驼峰:除第一个单次外,其余每个单词首字母大写,常用作类属性和方法:$userName


目录命名规则

类的文件名均以命名空间定义,且命名空间和类库文件所在的路径一致  app\index\controller

类名和类文件名保持一致,采用驼峰命名 首字母大写   User.php里只有User类


函数用匈牙利命名法   get_user_type()

类的方法小驼峰   getName()

类的属性小驼峰   userType()

魔术方法 双下划线加驼峰法 __set(),__callStatic()


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post