代码风格规范

本篇规范是 PSR-1 基本代码规范的继承与扩展。

本规范希望通过制定一系列规范化PHP代码的规则,以减少在浏览不同作者的代码时,因代码风格的不同而造成不便。

当多名程序员在多个项目中合作时,就需要一个共同的编码规范,
而本文中的风格规范源自于多个不同项目代码风格的共同特性,
因此,本规范的价值在于我们都遵循这个编码风格,而不是在于它本身。

关键词 “必须”(“MUST”)、“一定不可/一定不能”(“MUST NOT”)、“需要”(“REQUIRED”)、
“将会”(“SHALL”)、“不会”(“SHALL NOT”)、“应该”(“SHOULD”)、“不该”(“SHOULD NOT”)、
“推荐”(“RECOMMENDED”)、“可以”(“MAY”)和”可选“(“OPTIONAL”)的详细描述可参见 RFC 2119

1. 概览

  • 代码必须遵循 PSR-1 中的编码规范 。

  • 代码必须使用4个空格符而不是 tab键 进行缩进。

  • 每行的字符数应该软性保持在80个之内, 理论上一定不可多于120个, 但一定不能有硬性限制。

  • 每个 namespace 命名空间声明语句和 use 声明语句块后面,必须插入一个空白行。

  • 类的开始花括号({)必须写在其声明后自成一行,结束花括号(})也必须写在其主体后自成一行。

  • 方法的开始花括号({)必须写在函数声明后自成一行,结束花括号(})也必须写在函数主体后自成一行。

  • 类的属性和方法必须添加访问修饰符(privateprotected 以及 public), abstract 以及 final 必须声明在访问修饰符之前,而 static 必须声明在访问修饰符之后。

  • 控制结构的关键字后必须要有一个空格符,而调用方法或函数时则一定不能有。

  • 控制结构的开始花括号({)必须写在声明的同一行,而结束花括号(})必须写在主体后自成一行。

  • 控制结构的开始左括号后和结束右括号前,都一定不能有空格符。

1.1. 例子

以下例子程序简单地展示了以上大部分规范:

  1. <?php
  2. namespace Vendor\Package;
  3. use FooInterface;
  4. use BarClass as Bar;
  5. use OtherVendor\OtherPackage\BazClass;
  6. class Foo extends Bar implements FooInterface
  7. {
  8. public function sampleFunction($a, $b = null)
  9. {
  10. if ($a === $b) {
  11. bar();
  12. } elseif ($a > $b) {
  13. $foo->bar($arg1);
  14. } else {
  15. BazClass::bar($arg2, $arg3);
  16. }
  17. }
  18. final public static function bar()
  19. {
  20. // method body
  21. }
  22. }

2. 通则

2.1 基本编码准则

代码必须符合 PSR-1 中的所有规范。

2.2 文件

所有PHP文件必须使用Unix LF (linefeed)作为行的结束符。

所有PHP文件必须以一个空白行作为结束。

纯PHP代码文件必须省略最后的 ?> 结束标签。

2.3. 行

行的长度一定不能有硬性的约束。

软性的长度约束一定要限制在120个字符以内,若超过此长度,带代码规范检查的编辑器一定要发出警告,不过一定不可发出错误提示。

每行不应该多于80个字符,大于80字符的行应该折成多行。

非空行后一定不能有多余的空格符。

空行可以使得阅读代码更加方便以及有助于代码的分块。

每行一定不能存在多于一条语句。

2.4. 缩进

代码必须使用4个空格符的缩进,一定不能用 tab键 。

备注: 使用空格而不是tab键缩进的好处在于,
避免在比较代码差异、打补丁、重阅代码以及注释时产生混淆。
并且,使用空格缩进,让对齐变得更方便。

2.5. 关键字 以及 True/False/Null

PHP所有 关键字必须全部小写。

常量 truefalsenull必须全部小写。

3. namespace 以及 use 声明

namespace 声明后 必须 插入一个空白行。

所有 use 必须 在 namespace 后声明。

每条 use 声明语句 必须 只有一个 use 关键词。

use 声明语句块后 必须 要有一个空白行。

例如:

  1. <?php
  2. namespace Vendor\Package;
  3. use FooClass;
  4. use BarClass as Bar;
  5. use OtherVendor\OtherPackage\BazClass;
  6. // ... additional PHP code ...

4. 类、属性和方法

此处的“类”泛指所有的class类、接口以及traits可复用代码块。

4.1. 扩展与继承

关键词 extendsimplements必须写在类名称的同一行。

类的开始花括号必须独占一行,结束花括号也必须在类主体后独占一行。

  1. <?php
  2. namespace Vendor\Package;
  3. use FooClass;
  4. use BarClass as Bar;
  5. use OtherVendor\OtherPackage\BazClass;
  6. class ClassName extends ParentClass implements \ArrayAccess, \Countable
  7. {
  8. // constants, properties, methods
  9. }

implements 的继承列表也可以分成多行,这样的话,每个继承接口名称都必须分开独立成行,包括第一个。

  1. <?php
  2. namespace Vendor\Package;
  3. use FooClass;
  4. use BarClass as Bar;
  5. use OtherVendor\OtherPackage\BazClass;
  6. class ClassName extends ParentClass implements
  7. \ArrayAccess,
  8. \Countable,
  9. \Serializable
  10. {
  11. // constants, properties, methods
  12. }

4.2. 属性

每个属性都必须添加访问修饰符。

一定不可使用关键字 var 声明一个属性。

每条语句一定不可定义超过一个属性。

不要使用下划线作为前缀,来区分属性是 protected 或 private。

以下是属性声明的一个范例:

  1. <?php
  2. namespace Vendor\Package;
  3. class ClassName
  4. {
  5. public $foo = null;
  6. }

4.3. 方法

所有方法都必须添加访问修饰符。

不要使用下划线作为前缀,来区分方法是 protected 或 private。

方法名称后一定不能有空格符,其开始花括号必须独占一行,结束花括号也必须在方法主体后单独成一行。参数左括号后和右括号前一定不能有空格。

一个标准的方法声明可参照以下范例,留意其括号、逗号、空格以及花括号的位置。

  1. <?php
  2. namespace Vendor\Package;
  3. class ClassName
  4. {
  5. public function fooBarBaz($arg1, &$arg2, $arg3 = [])
  6. {
  7. // method body
  8. }
  9. }

4.4. 方法的参数

参数列表中,每个逗号后面必须要有一个空格,而逗号前面一定不能有空格。

有默认值的参数,必须放到参数列表的末尾。

  1. <?php
  2. namespace Vendor\Package;
  3. class ClassName
  4. {
  5. public function foo($arg1, &$arg2, $arg3 = [])
  6. {
  7. // method body
  8. }
  9. }

参数列表可以分列成多行,这样,包括第一个参数在内的每个参数都必须单独成行。

拆分成多行的参数列表后,结束括号以及方法开始花括号 必须 写在同一行,中间用一个空格分隔。

  1. <?php
  2. namespace Vendor\Package;
  3. class ClassName
  4. {
  5. public function aVeryLongMethodName(
  6. ClassTypeHint $arg1,
  7. &$arg2,
  8. array $arg3 = []
  9. ) {
  10. // method body
  11. }
  12. }

4.5. abstractfinal 、 以及 static

需要添加 abstractfinal 声明时, 必须写在访问修饰符前,而 static必须写在其后。

  1. <?php
  2. namespace Vendor\Package;
  3. abstract class ClassName
  4. {
  5. protected static $foo;
  6. abstract protected function zim();
  7. final public static function bar()
  8. {
  9. // method body
  10. }
  11. }

4.6. 方法及函数调用

方法及函数调用时,方法名或函数名与参数左括号之间一定不能有空格,参数右括号前也 一定不能有空格。每个逗号前一定不能有空格,但其后必须有一个空格。

  1. <?php
  2. bar();
  3. $foo->bar($arg1);
  4. Foo::bar($arg2, $arg3);

参数可以分列成多行,此时包括第一个参数在内的每个参数都必须单独成行。

  1. <?php
  2. $foo->bar(
  3. $longArgument,
  4. $longerArgument,
  5. $muchLongerArgument
  6. );

5. 控制结构

控制结构的基本规范如下:

  • 控制结构关键词后必须有一个空格。
  • 左括号 (一定不能有空格。
  • 右括号 ) 前也一定不能有空格。
  • 右括号 ) 与开始花括号 {一定有一个空格。
  • 结构体主体一定要有一次缩进。
  • 结束花括号 } 一定在结构体主体后单独成行。

每个结构体的主体都必须被包含在成对的花括号之中,
这能让结构体更加结构话,以及减少加入新行时,出错的可能性。

5.1. ifelseifelse

标准的 if 结构如下代码所示,留意 括号、空格以及花括号的位置,
注意 elseelseif 都与前面的结束花括号在同一行。

  1. <?php
  2. if ($expr1) {
  3. // if body
  4. } elseif ($expr2) {
  5. // elseif body
  6. } else {
  7. // else body;
  8. }

应该使用关键词 elseif 代替所有 else if ,以使得所有的控制关键字都像是单独的一个词。

5.2. switchcase

标准的 switch 结构如下代码所示,留意括号、空格以及花括号的位置。
case 语句必须相对 switch 进行一次缩进,而 break 语句以及 case 内的其它语句都 必须 相对 case 进行一次缩进。
如果存在非空的 case 直穿语句,主体里必须有类似 // no break 的注释。

  1. <?php
  2. switch ($expr) {
  3. case 0:
  4. echo 'First case, with a break';
  5. break;
  6. case 1:
  7. echo 'Second case, which falls through';
  8. // no break
  9. case 2:
  10. case 3:
  11. case 4:
  12. echo 'Third case, return instead of break';
  13. return;
  14. default:
  15. echo 'Default case';
  16. break;
  17. }

5.3. whiledo while

一个规范的 while 语句应该如下所示,注意其 括号、空格以及花括号的位置。

  1. <?php
  2. while ($expr) {
  3. // structure body
  4. }

标准的 do while 语句如下所示,同样的,注意其 括号、空格以及花括号的位置。

  1. <?php
  2. do {
  3. // structure body;
  4. } while ($expr);

5.4. for

标准的 for 语句如下所示,注意其 括号、空格以及花括号的位置。

  1. <?php
  2. for ($i = 0; $i < 10; $i++) {
  3. // for body
  4. }

5.5. foreach

标准的 foreach 语句如下所示,注意其 括号、空格以及花括号的位置。

  1. <?php
  2. foreach ($iterable as $key => $value) {
  3. // foreach body
  4. }

5.6. try, catch

标准的 try catch 语句如下所示,注意其 括号、空格以及花括号的位置。

  1. <?php
  2. try {
  3. // try body
  4. } catch (FirstExceptionType $e) {
  5. // catch body
  6. } catch (OtherExceptionType $e) {
  7. // catch body
  8. }

6. 闭包

闭包声明时,关键词 function 后以及关键词 use 的前后都必须要有一个空格。

开始花括号必须写在声明的同一行,结束花括号必须紧跟主体结束的下一行。

参数列表和变量列表的左括号后以及右括号前,必须不能有空格。

参数和变量列表中,逗号前必须不能有空格,而逗号后必须要有空格。

闭包中有默认值的参数必须放到列表的后面。

标准的闭包声明语句如下所示,注意其 括号、逗号、空格以及花括号的位置。

  1. <?php
  2. $closureWithArgs = function ($arg1, $arg2) {
  3. // body
  4. };
  5. $closureWithArgsAndVars = function ($arg1, $arg2) use ($var1, $var2) {
  6. // body
  7. };

参数列表以及变量列表可以分成多行,这样,包括第一个在内的每个参数或变量都必须单独成行,而列表的右括号与闭包的开始花括号必须放在同一行。

以下几个例子,包含了参数和变量列表被分成多行的多情况。

  1. <?php
  2. $longArgs_noVars = function (
  3. $longArgument,
  4. $longerArgument,
  5. $muchLongerArgument
  6. ) {
  7. // body
  8. };
  9. $noArgs_longVars = function () use (
  10. $longVar1,
  11. $longerVar2,
  12. $muchLongerVar3
  13. ) {
  14. // body
  15. };
  16. $longArgs_longVars = function (
  17. $longArgument,
  18. $longerArgument,
  19. $muchLongerArgument
  20. ) use (
  21. $longVar1,
  22. $longerVar2,
  23. $muchLongerVar3
  24. ) {
  25. // body
  26. };
  27. $longArgs_shortVars = function (
  28. $longArgument,
  29. $longerArgument,
  30. $muchLongerArgument
  31. ) use ($var1) {
  32. // body
  33. };
  34. $shortArgs_longVars = function ($arg) use (
  35. $longVar1,
  36. $longerVar2,
  37. $muchLongerVar3
  38. ) {
  39. // body
  40. };

注意,闭包被直接用作函数或方法调用的参数时,以上规则仍然适用。

  1. <?php
  2. $foo->bar(
  3. $arg1,
  4. function ($arg2) use ($var1) {
  5. // body
  6. },
  7. $arg3
  8. );

7. 总结

以上规范难免有疏忽,其中包括但不仅限于:

  • 全局变量和常量的定义

  • 函数的定义

  • 操作符和赋值

  • 行内对齐

  • 注释和文档描述块

  • 类名的前缀及后缀

  • 最佳实践

本规范之后的修订与扩展将弥补以上不足。

附录 A. 问卷调查

为了编写本规范,小组制定了调查问卷,用来统计各成员项目的共同规范。
以下是此问卷调查的数据,在此供查阅。

A.1. 问卷数据

  1. url,http://www.horde.org/apps/horde/docs/CODING_STANDARDS,http://pear.php.net/manual/en/standards.php,http://solarphp.com/manual/appendix-standards.style,http://framework.zend.com/manual/en/coding-standard.html,http://symfony.com/doc/2.0/contributing/code/standards.html,http://www.ppi.io/docs/coding-standards.html,https://github.com/ezsystems/ezp-next/wiki/codingstandards,http://book.cakephp.org/2.0/en/contributing/cakephp-coding-conventions.html,https://github.com/UnionOfRAD/lithium/wiki/Spec%3A-Coding,http://drupal.org/coding-standards,http://code.google.com/p/sabredav/,http://area51.phpbb.com/docs/31x/coding-guidelines.html,https://docs.google.com/a/zikula.org/document/edit?authkey=CPCU0Us&hgd=1&id=1fcqb93Sn-hR9c0mkN6m_tyWnmEvoswKBtSc0tKkZmJA,http://www.chisimba.com,n/a,https://github.com/Respect/project-info/blob/master/coding-standards-sample.php,n/a,Object Calisthenics for PHP,http://doc.nette.org/en/coding-standard,http://flow3.typo3.org,https://github.com/propelorm/Propel2/wiki/Coding-Standards,http://developer.joomla.org/coding-standards.html
  2. voting,yes,yes,yes,yes,yes,yes,yes,yes,yes,yes,yes,yes,yes,yes,yes,no,no,no,?,yes,no,yes
  3. indent_type,4,4,4,4,4,tab,4,tab,tab,2,4,tab,4,4,4,4,4,4,tab,tab,4,tab
  4. line_length_limit_soft,75,75,75,75,no,85,120,120,80,80,80,no,100,80,80,?,?,120,80,120,no,150
  5. line_length_limit_hard,85,85,85,85,no,no,no,no,100,?,no,no,no,100,100,?,120,120,no,no,no,no
  6. class_names,studly,studly,studly,studly,studly,studly,studly,studly,studly,studly,studly,lower_under,studly,lower,studly,studly,studly,studly,?,studly,studly,studly
  7. class_brace_line,next,next,next,next,next,same,next,same,same,same,same,next,next,next,next,next,next,next,next,same,next,next
  8. constant_names,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper
  9. true_false_null,lower,lower,lower,lower,lower,lower,lower,lower,lower,upper,lower,lower,lower,upper,lower,lower,lower,lower,lower,upper,lower,lower
  10. method_names,camel,camel,camel,camel,camel,camel,camel,camel,camel,camel,camel,lower_under,camel,camel,camel,camel,camel,camel,camel,camel,camel,camel
  11. method_brace_line,next,next,next,next,next,same,next,same,same,same,same,next,next,same,next,next,next,next,next,same,next,next
  12. control_brace_line,same,same,same,same,same,same,next,same,same,same,same,next,same,same,next,same,same,same,same,same,same,next
  13. control_space_after,yes,yes,yes,yes,yes,no,yes,yes,yes,yes,no,yes,yes,yes,yes,yes,yes,yes,yes,yes,yes,yes
  14. always_use_control_braces,yes,yes,yes,yes,yes,yes,no,yes,yes,yes,no,yes,yes,yes,yes,no,yes,yes,yes,yes,yes,yes
  15. else_elseif_line,same,same,same,same,same,same,next,same,same,next,same,next,same,next,next,same,same,same,same,same,same,next
  16. case_break_indent_from_switch,0/1,0/1,0/1,1/2,1/2,1/2,1/2,1/1,1/1,1/2,1/2,1/1,1/2,1/2,1/2,1/2,1/2,1/2,0/1,1/1,1/2,1/2
  17. function_space_after,no,no,no,no,no,no,no,no,no,no,no,no,no,no,no,no,no,no,no,no,no,no
  18. closing_php_tag_required,no,no,no,no,no,no,no,no,yes,no,no,no,no,yes,no,no,no,no,no,yes,no,no
  19. line_endings,LF,LF,LF,LF,LF,LF,LF,LF,?,LF,?,LF,LF,LF,LF,?,,LF,?,LF,LF,LF
  20. static_or_visibility_first,static,?,static,either,either,either,visibility,visibility,visibility,either,static,either,?,visibility,?,?,either,either,visibility,visibility,static,?
  21. control_space_parens,no,no,no,no,no,no,yes,no,no,no,no,no,no,yes,?,no,no,no,no,no,no,no
  22. blank_line_after_php,no,no,no,no,yes,no,no,no,no,yes,yes,no,no,yes,?,yes,yes,no,yes,no,yes,no
  23. class_method_control_brace,next/next/same,next/next/same,next/next/same,next/next/same,next/next/same,same/same/same,next/next/next,same/same/same,same/same/same,same/same/same,same/same/same,next/next/next,next/next/same,next/same/same,next/next/next,next/next/same,next/next/same,next/next/same,next/next/same,same/same/same,next/next/same,next/next/next

A.2. 问卷说明

indent_type:
缩进类型. tab = “使用 tab 键一次”, 2 or 4 = “空格的数量”

line_length_limit_soft:
每行字符数量的“软”限制. ? = 不可辩或无作答, no 表示无限制.

line_length_limit_hard:
每行字符数量的“硬”限制. ? = 不可辩或无作答, no 表示无限制.

class_names:
类名称的命名. lower = 只允许小写字母, lower_under = 下滑线分隔的小写字母, studly = StudlyCase 的驼峰风格.

class_brace_line:
类的开始花括号是与 class 关键字在同一行或是在其的下一行?

constant_names:
类的常量如何命名? upper = 下划线分隔的大写字母.

true_false_null:
关键字 truefalse 以及 null 是全部小写 lower 还是全部大写 upper?

method_names:
方法名称如何命名? camel = camelCase, lower_under = 下划线分隔的小写字母.

method_brace_line:
方法的开始花括号是与方法名在同一行还是在其的下一行?

control_brace_line:
控制结构的开始花括号是与声明在同一行还是在其的下一行?

control_space_after:
控制结构关键词后是否有空格?

always_use_control_braces:
控制结构体是否都要被包含在花括号内?

else_elseif_line:
elseelseif 与前面的结束花括号在同一行还是在其的下一行?

case_break_indent_from_switch:
switch 语句中的 casebreak 需要相对 switch 缩进多少次?

function_space_after:
函数调用语句中,函数名称与变量列表的左括号间是否有空格?

closing_php_tag_required:
纯 PHP 代码的文件,是否需要 ?> 结束标签?

line_endings:
选择哪种类型的行结束符?

static_or_visibility_first:
声明一个静态方法时,static 是写访问修饰符前还是后?

control_space_parens:
控制结构里,左括号后以及右括号前是否有空格?yes = if ( $expr ), no = if ($expr).

blank_line_after_php:
PHP 开始标签后,是否需要一个空行?

class_method_control_brace:
开始花括号在类、方法和控制结构的位置统计。

A.3. 问卷统计结果

  1. indent_type:
  2. tab: 7
  3. 2: 1
  4. 4: 14
  5. line_length_limit_soft:
  6. ?: 2
  7. no: 3
  8. 75: 4
  9. 80: 6
  10. 85: 1
  11. 100: 1
  12. 120: 4
  13. 150: 1
  14. line_length_limit_hard:
  15. ?: 2
  16. no: 11
  17. 85: 4
  18. 100: 3
  19. 120: 2
  20. class_names:
  21. ?: 1
  22. lower: 1
  23. lower_under: 1
  24. studly: 19
  25. class_brace_line:
  26. next: 16
  27. same: 6
  28. constant_names:
  29. upper: 22
  30. true_false_null:
  31. lower: 19
  32. upper: 3
  33. method_names:
  34. camel: 21
  35. lower_under: 1
  36. method_brace_line:
  37. next: 15
  38. same: 7
  39. control_brace_line:
  40. next: 4
  41. same: 18
  42. control_space_after:
  43. no: 2
  44. yes: 20
  45. always_use_control_braces:
  46. no: 3
  47. yes: 19
  48. else_elseif_line:
  49. next: 6
  50. same: 16
  51. case_break_indent_from_switch:
  52. 0/1: 4
  53. 1/1: 4
  54. 1/2: 14
  55. function_space_after:
  56. no: 22
  57. closing_php_tag_required:
  58. no: 19
  59. yes: 3
  60. line_endings:
  61. ?: 5
  62. LF: 17
  63. static_or_visibility_first:
  64. ?: 5
  65. either: 7
  66. static: 4
  67. visibility: 6
  68. control_space_parens:
  69. ?: 1
  70. no: 19
  71. yes: 2
  72. blank_line_after_php:
  73. ?: 1
  74. no: 13
  75. yes: 8
  76. class_method_control_brace:
  77. next/next/next: 4
  78. next/next/same: 11
  79. next/same/same: 1
  80. same/same/same: 6