php编程代码规范学习笔记(适合初学者)
php编程代码规范我们会从几个方法来介绍,如:命名规范 常用名词 代码重构了,下面我先整理一些规范之后再整理一些笔记,希望文章对各位朋友会带来一些帮助哦。
命名规范
类文件都以.class.php为后缀,使用驼峰法命名,并且首字母大写,例如 Pay.class.php;
类名和目录_文件名一致。例如:类名Zend_Autoloader的目录是Zend/Autoloader.class.php;
函数的命名使用小写字母和下划线的方式。例如:get_client_ip;
方法的命名使用驼峰法,首字母小写或者使用下划线"_",例如listComment(),_getResource(),通常下划线开头的方法属于私有方法;
属性的命名使用驼峰法,首字母小写或者使用下划线"_",如$username,$_instance,通常下划线开头的属性属于私有属性;
常量以大写字母和下划线"_"命名,如"HOME_URL";
常用名词
1>list名词(单数),如listApple,一看我们就知道读取苹果列表,我们没有必要写成getApples或者listApples或readApples——因为get我们规定一般用于读取单个数据,如getApple.listApples不加s我们也知道是取苹果列表(保证尽量缩短变量命名);
2>get名词(单数);
3>名词Total,表示某个东西的总数。如expenseTotal;
4>found:表示某个值是否已经找到;
5>uccess或ok:一项操作是否成功;
6>done:某个工程是否完成;
7>error:是否有错误发生;
8>result:返回的结果
代码重构
1.函数或者方法体内的代码尽量控制在一个屏幕内。
2.类中不使用的方法随机删除。
3.修改别人的类中方法,要签名。
4.在每个模块内写个readme文件(用于比较复杂业务的说明或代码说明)。
5.尽量让每个类做自己的事,每个函数做一件事。
下面补充一些方法
一、文件格式
1. 对于只含有 php 代码的文件,我们将在文件结尾处忽略掉 ?> 。这是为了防止多余的空格或者其它字符影响到代码。
例如如下代码:
2. 缩进应该能够反映出代码的逻辑结果,尽量使用四个空格,禁止使用制表符TAB,因为这样能够保证有跨客户端编程器软件的灵活性。例如:
if (1 == $x) {
$indented_code = 1;
if (1 == $new_line) {
$more_indented_code = 1;
}
}
3. 变量赋值必须保持相等间距和排列。例如:
$variable = 'demo';$var = 'demo2';
4. 每行代码长度应控制在80个字符以内,最长不超过120个字符。因为 linux 读入文件一般以80列为单位,就是说如果一行代码超过80个字符,那么系统将为此付出额外操作指令。这个虽然看起来是小问题,但是对于追求完美的程序员来说也是值得注意并遵守的规范。
5. 每行结尾不允许有多余的空格。
二、命名约定
1. 类文件都是以.class.php为后缀,且类文件名只允许字母,使用驼峰法命名,并且首字母大写,例如:DbMysql.class.php 。
2. 配置和函数等其他类库文件之外的文件一般是分别以”.inc.php”和".php”为后缀,且文件名命名使用小写字母和下划线的方式,多个单词之间以下 划线分隔,例如config.inc.php , common.php,install_function.php 。
3. 确保文件的命名和调用大小写一致,是由于在类Unix系统上面,对大小写是敏感的。
4. 类名和文件名一致(包括上面说的大小写一致),且类名只允许字母,例如 UserAction类的文件命名是UserAction.class.php, InfoModel类的文件名是InfoModel.class.php 。
5. 控制器类以Action为后缀,例如 UserAction、InfoAction ,模型类以Model为后缀,例如UserModel、InfoModel ,其他类也分别以相应分类为后缀,例如Service 、Widget。
6. 方法名只允许由字母组成,下划线是不允许的,首字母要小写,其后每个单词首字母要大写,即所谓的 ”驼峰法命名" 规则,且越详细越好,应该能够描述清楚该方法的功能,例如switchModel、findPage。
7. 属性的命名只允许由字母组成,下划线是不允许的,首字母要小写,其后每个单词首字母要大写,即所谓的 ”驼峰法命名" 规则,例如tablePrefix、tableName 。
8. 对于对象成员的访问,我们必须始终使用 ”get" 和 ”set" 方法,例如:
class Foo { protected $_testObj; public function getTestObj() { return $this->_testObj; } public function setTestObj($testObj) { $this->testObj = $_testObj; } }
9. 当类成员方法被声明为 private 时,必须分别以双下划线 __为开头;被声明为 protected 时,必须分别以单下划线 _ 为开头;一般情况下的方法不含下划线,例如:
class Foo { private function __example() { // ... } protected function _example() { // ... } public function example() { // ... } }
10. 如果我们需要把一些经常使用的方法定义为全局函数,那么应该把它们以静态 (static)的形式定义在类中,例如:
class Think { // ... static public function autoload($classname) { // ... } }
11. 被声明为 private的类成员属性必须由双下划线 __ 作为开头;被声明为 protected 的类成员属性必须由下划线 _ 作为开头;而声明为 public 的成员属性则在任何时候都不允许含有下划线。
12. 函数的命名使用小写字母和下划线的方式,且越详细越好,应该能够描述清楚该函数的功能,例如 get_client_ip 。
13. 当方法或函数参数不一定需要被赋值的时候,用 null 来代替 false 作为函数参数的默认值,除非该参数是 boolean 值。
14. 变量只允许由小写字母和下划线组成,且建议用描述性的变量的命名,越详细越好,以至于像 $i 或 $n 等等都是不鼓励使用的.
15. 类中的常量 constant 和全局范围内常量define,只能由大写字母和下划线组成,各个单词之间以下划线分割.
16. boolean 值和 null 值都采用小写.
三、编码风格
1. php 代码必须以完整的形式来定界(),即不要使用php 短标签( …?>),且保证在关闭标签后不要有任何空格.
2. 当一个字符串是纯文本组成的时候(即不含有变量),则必须总是以单引号(')作为定界符。例如:$a = 'Example String';
3. 变量替换中的变量只允许用 $+变量名 的形式,例如:
$greeting = Hello $name, welcome back!; // 允许 $greeting = Hello {$name}, welcome back!; // 允许 $greeting = Hello ${name}, welcome back!; // 不允许
当用点号 . 连接各字符串的时候,字符串与点号间必须用一个空格隔开,且允许把它分割成多行以增强可读性,在这种情况下,点号 . 必须与等于号 = 对齐,例如:
$sql = SELECT `id`, `name` . FROM `people` . WHERE `name` = 'Susan' . ORDER BY `name` ASC ;
当用 array 类型符号来构造数组的时候,必须在每个逗号之后加上一个空格来增强可读性,例如:$sampleArray = array(1, 2, 3, 'Think', 'SNS');
4. 当使用 array 类型符声明关联数组的时候,我们鼓励把它分成多个行,只是我们必须同时保证每行的键与值的对齐,以保持美观,例如:
$sampleArray = array( 'firstKey' => 'firstValue', 'secondKey' => 'secondValue' );
5. 大括号的开始必须在类名的下一行顶格,例如:
class Think { // ... }
6. 类中的所有代码都必须用四个空格来进行缩进。
7. 每个 php 文件只允许声明一个类。在类文件里面写其它代码是允许的,但并不鼓励这样做。假如真要附加代码的话,必须用空行来分隔。
8. 任何类变量的声明都必须放在类顶部,先于任何函数的声明。
9. 不允许用 var 符号来声明变量,类成员变量必须以 private,protected 和 public 来声明。其次,把类成员声明为 public 而直接引用虽然是允许的,但通常更好的方法是使用 get 和 set 方法来访问类成员。
10. 方法必须总是用 private,protected 或者 public 来声明其作用域。
11. 静态 static 方法应该声明其作用域,且不应该再被声明为 private 私有,而应该为 protected 或者public ,如果只是不想被子类继承,则应该用 final 声明它们。
12. 函数或方法的初始大括号应该在函数声明的下一行顶格,例如:
function get_client_ip() { // … }
13. 在函数或方法名与参数括号之间不允许出现多余的空格,例如:
function get_client_ip() { // … }
14. 引用只允许定义在函数参数中,实时传递引用是禁止的,例如:
// 引用定义在函数参数-允许的 function defineRefInMethod(&$a) { $a = 'a'; } defineRefInMethod($b); echo $b; // 'a' // 实时传递引用-禁止的 function callTimePassRef($a) { $a = 'a'; } callTimePassRef(&$c); echo $c; // 'a'
15. 函数或方法返回值不可以用括号包住,不然会降低可读性,而且假如以后函数修改为返回引用的话,这将会抛出一个异常.
16. 鼓励尽量使用类型提示,特别是在模块设计中,例如:
class Foo { public function foo(SomeInterface $object) { } public function bar(array $options) { } }
17. 函数和方法参数必须用逗号+空格来分隔。
18. 对于参数为数组的函数,参数中的数组应该分成多行以增强可读性,例如:
threeArguments(array(1, 2, 3), 2, 3);
threeArguments(array(1, 2, 3, 'Think', 'SNS', $a, $b, $c,56.44, $d, 500), 2, 3);
19. 基于if, else和else if的条件控制里,我们必须用空格间隔开语句和括号,大括号的开始 { 必须与条件控制语句位于同一行,结束 } 必须总是独占一行且顶格,控制流程内容必须用四个空格进行缩进,且不使用elseif.
if ($condition) { // ... } else if ($_condition) { // ... } else { // ... }
20. 在条件控制语句的条件括号内,必须用空格将操作符与其它元素隔开,如果遇到很长的逻辑判断,则鼓励用内嵌括号来分割各个逻辑,例如:
if (($a != 2) and ($b == 1)) { $a = $b; }
21. switch 条件控制语句中,必须用空格将待测参数与其它元素分隔开,例如:
switch ($num) { // … }
22. switch 语句的内容必须以四个空格缩进,case 条件控制的内容必须再加四个空格进行缩进,例如:
switch ($indentedSpaces) { case 2: echo 错误; break; case 4: echo 正确; break; default: break; } 23. 在 switch 语句中应该总是包括 default 控制。 24. 有时候我们需要在 case 语境中省略掉 break 或 return ,这个时候我们必须为这些 case 语句加上 // 此处无break 注释,例如: switch ($numPeople) { case 1: // 此处无break case 2: break; default: break; }
永久链接:
转载随意!带上文章地址吧。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

To understand the seven principles of PHP code specifications and write more standardized code, specific code examples are required. Introduction: PHP is a popular programming language that is widely used in the field of web development. Writing well-formed code is key to developing high-quality applications. This article will introduce the seven principles of PHP code specifications and provide specific code examples to help developers write more standardized PHP code. 1. Naming conventions Good naming conventions are the basis for writing standardized code. The following are several principles of naming conventions: Class names and interface names use camel case starting with an uppercase letter.

Understand and apply the exception handling rules in PHP code specifications. Exception handling is a very important part of programming. It can effectively help us find, locate and solve errors in the program. The PHP code specification provides a standard set of exception handling rules, which is very helpful for writing code that is readable, maintainable and reliable. This article describes these rules and illustrates them with code examples. 1. When to use exception handling Before understanding the exception handling rules, we must first clarify when to use exception handling. Exception handling should be used to handle

Comply with PHP writing specifications: Improve teamwork and code collaborative development capabilities Introduction: In software development, code quality and teamwork are crucial. Complying with programming standards is one of the effective means to improve code quality and teamwork. This article will focus on how to comply with PHP writing standards to improve teamwork and code collaborative development capabilities. 1. Naming conventions Good naming conventions can increase the readability and maintainability of code. In PHP programming, we recommend following the following naming convention: Use camelCase naming for variables and functions, such as

Assessment of the impact of the introduction of PHP code specifications on the development industry. With the continuous development of the software development industry, code specifications have become an important means to improve code quality, readability and maintainability. In the field of PHP development, the introduction of PHP code specifications has had a positive impact on the entire development industry. This article will evaluate the impact of the proposed PHP code specification on the development industry from several aspects, and illustrate it with code examples. Improve code quality. Code specifications can improve code quality through unified naming conventions, code structure and comment specifications.

How to automatically check whether the code complies with the latest PHP code specifications through the hook function in version control? As team collaboration and development become increasingly common, the unification of code specifications has become particularly important. In PHP development, following the latest PHP code specifications can improve the readability and maintainability of the code, thereby improving the team's development efficiency. This article will introduce how to automatically check whether the code complies with the latest PHP code specifications through the hook function in version control, and provide corresponding code examples. 1. What is the hook function of version control version control

How to use PHP code specifications for code review Introduction: PHP is a widely used development language. Its flexibility and powerful functions make many developers love to use it to build websites and applications. However, due to the flexibility of PHP, it is easy to have problems with code irregularities and low quality. In order to ensure the readability, maintainability and scalability of the code, we need to use PHP code specifications for code review. This article will introduce some commonly used PHP code specifications and provide corresponding code examples. I hope you can conduct code review.

How to improve code testability through PHP code specifications Summary: It is very important for developers to write testable code. This article will introduce how to improve the testability of your code by following some PHP coding standards, with code examples. Introduction: In modern software development, testability has become a very important element. Testable code enables faster debugging and fixing problems, while also delivering higher quality software. In PHP development, we can improve

Introduction to the application of PHP code specifications in preventing security vulnerabilities: With the development of Internet applications, security issues have become an aspect that our developers must pay attention to. In web development, PHP is a widely used programming language and one of the main targets of hackers. In order to ensure that the developed applications are safe and reliable, it is not only necessary to pay attention to the security configuration of the server environment, but also to pay attention to security from the code level. In this article, I will focus on the application of PHP code specifications in preventing security vulnerabilities and provide a
