文件倉庫位址:https://github.com/hfcorriez/fig-standards
PSR規範中文版
1.1. 範例
本範例包含上面的一些規則簡單展示:
public function sampleFunction($a, $b = null)
==> bar ();
} elseif ($a > $b) {
$foo->bar($arg BazClass::bar($arg2, $arg3);
}
}
final public static function bar()
{
// 甲基>
2. 概括
2.1 基礎代碼規範
代碼必須遵守 PSR-1 的所有規則。
2.2 檔案
所有的PHP檔案必須使用Unix LF(換行)作為行結束符號。
所有PHP檔案必須以一個空白行結束。
純PHP程式碼的檔案關閉標籤?>必須省略
2.3. 行
行長度不可有硬限制。
行長度的軟限制必須是120個字元;對於軟限制,自動樣式檢查器必須警告但不可報錯。
行實際長度不應超過80個字元;較長的行應被分割成多個不超過80個字元的後續行。
在非空白行後面不可有空格。
空白行可以用來改善可讀性和區分相關的程式碼區塊。
一行不應多於一個語句。
2.4. 縮排
程式碼必須使用4個空格的縮進,且不可使用製表符作為縮排。
注意:只用空格,不和製表符混合使用,將會對避免代碼差異,補丁,歷史和註解中的一些問題有幫助。使用空格還可以讓調整細微的縮進來改進行間對齊變得非常簡單。
2.5. 關鍵字和 True/False/Null
PHP keywords 必須使用小寫。
PHP常數true, false和null必須使用小寫。
3. Namespace和Use宣告
如果存在,namespace宣告之後必須有一個空白行。
如果存在,所有的use聲明必須放在namespace聲明的下面。
一個use關鍵字必須只用於一個聲明。
在use宣告程式碼區塊後面必須有一個空行。
範例:
use FooClass;
use BarClass as Bar;
use OtherVendorOtherPackageBazClass;
// ... additional PHP code ...
4. 類,屬性和方法
術語「類」指所有的類,介面和特性(traits)。
4.1. 擴充與繼承
一個類別的extends和implements關鍵字必須和類別名稱在同一行。
類別的左花括號必須放在下面自成一行;右花括號必須放在類別主體的後面自成一行。
class ClassName extends ParentClass implements ArrayAccess, Countable
{
// constants, properties, methods
}
implements一個清單可以被分割為多個有一次縮排的後續行。如果這麼做,則清單的第一項必須放在下一行,且每行必須只有一個介面。
use FooClass;
use BarClass as Bar;
use OtherVendorOtherPackageBazClass;
class ClassName extends ParentClass implements
ArrayAccess,
Countable,
Serializable
{
🎜>
4.2. 屬性
所有的屬性必須宣告可見性。
一個語句不可宣告多個屬性。
屬性名稱不應使用單一底線作為前綴來表示保護或私有的可見性。
一個屬性宣告看起來應該是下面這樣的。
複製程式碼
4.3. 方法
所有的方法必須宣告可見性。
方法名稱在宣告之後不可跟隨一個空格。左花括號必須放在下面自成一行,且右花括號必須放在方法主體的下方自成一行。左括號後面不可有空格,右括號前面不可有空格。
一個方法定義看來應該像下面這樣。 注意括號,逗號,空格和花括號:
複製程式碼4.4. 方法參數
在參數清單中,逗號之前不可有空格,逗號之後必須要有一個空格。
方法中有預設值的參數必須放在參數清單的最後面。
class ClassName
{
public function foo($arg1, &$arg2, $arg3 = [])
{
} >
參數清單可以被分成多個有一次縮排的多個後續行。如果這麼做,則清單的第一項必須放在下一行,且每行必須只放一個參數。
複製程式碼
ClassTypeHint $arg1,
ClassTypeHint $arg1,
[]
) {
// method身體
}
}
4.5. abstract,final和 static
如果存在,static聲明必須跟著可見性聲明。
複製程式碼
abstract protected function zim();
{
// 甲基>4.6. 呼叫方法和函數
要呼叫一個方法或函數,在方法或函數名稱和左括號之間不可有空格,左括號之後不可有空格,右括號之前不可有空格。函數列表中,逗號之前不可有空格,逗號之後必須有一個空格。
bar();
$foo->bar($arg1);
複製程式碼
程式碼如下:
$foo->bar( $longerArgument, $muchLongerArgument);
每個結構的主體必須被括在花括號裡。這個結構看起來更標準化,並且當加新行的時候可以減少引入錯誤的可能性。
一個if結構看起來應該像下面。注意括號,空格,花括號的位置;並且else和elseif和前一個主體的右花括號在同一行。
複製程式碼
程式碼如下:
if ($expr1) {
程式碼如下:
for ($i = 0; $i // for body}
程式碼如下:
foreach ($iterableas $key => $value) { // foreach body}
閉包帶預設值的參數必須放在參數清單後面。
一個閉包聲明看起來應該像下面。注意括號,空格和花括號的位置。
複製程式碼
程式碼如下:
$closureWithArgs = function ($11, $arg2) {$程式碼如下:
$noArgs_longVars = function () use (
$longVar1,
$longerVar2,
$longArgs_longVars = function (
$longArgument,
$longerArgument,
$muchLongerVar3
) {
// body
};
$longArgs_shortVars = function (
$longArgument,
$longerArgument,
$muchLongerArgument
$longVar1,
>>
注意如果在函數或方法中把閉包作為一個參數調用,如上格式規則同樣適用。
複製程式碼
$foo->bar(
$foo->bar(@
function ($arg2) use ($var1) {
// body
7. 结论
在该指南中有很多风格的元素和做法有意被忽略掉。这些包括但不局限于:
全局变量和全局常量的声明
方法声明
操作符和赋值
行间对齐
注释和文档块
类名给你前缀和后缀
最佳实践
以后的建议可以修改和扩展该指南以满足这些或其他风格的元素和实践。
附录A 调查
为了写这个风格指南,我们采用了调查个项目以确定共同的做法。这个调查在这里供他人查看。
A.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
voting,yes,yes,yes,yes,yes,yes,yes,yes,yes,yes,yes,yes,yes,yes,yes,no,no,no,?,yes,no,yes
indent_type,4,4,4,4,4,tab,4,tab,tab,2,4,tab,4,4,4,4,4,4,tab,tab,4,tab
line_length_limit_soft,75,75,75,75,no,85,120,120,80,80,80,no,100,80,80,?,?,120,80,120,no,150
line_length_limit_hard,85,85,85,85,no,no,no,no,100,?,no,no,no,100,100,?,120,120,no,no,no,no
class_names,studly,studly,studly,studly,studly,studly,studly,studly,studly,studly,studly,lower_under,studly,lower,studly,studly,studly,studly,?,studly,studly,studly
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
constant_names,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper
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
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
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
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
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
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
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
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
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
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
line_endings,LF,LF,LF,LF,LF,LF,LF,LF,?,LF,?,LF,LF,LF,LF,?,,LF,?,LF,LF,LF
static_or_visibility_first,static,?,static,either,either,either,visibility,visibility,visibility,either,static,either,?,visibility,?,?,either,either,visibility,visibility,static,?
control_space_parens,no,no,no,no,no,no,yes,no,no,no,no,no,no,yes,?,no,no,no,no,no,no,no
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
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 = "使用制表符",2 or 4 = "空格数量"
line_length_limit_soft: 行长度的“软”限制,用字符。 ? = 不表示或者数字 no 意为不限制.
line_length_limit_hard: 行长度的"硬"限制,用字符。 ? = 不表示或者数字, no 意为不限制.
class_names: 类名如何命名 lower = 只是小写, lower_under = 小写加下划线, studly = 骆驼型.
class_brace_line: 類別的左花括號是放在同(same)一行還是在下(next)一行?
constant_names: 類別常數如何命名? upper = 大寫加上底線分隔符號。
true_false_null: 全校寫還是全大寫?
method_names: 方法名稱如何命名? camel = 駝峰式, lower_under = 小寫加上底線分隔符號。
method_brace_line: 方法的左花括號在同(same)一行還是在下(next)一行?
control_brace_line: 控制結構的左花括號在同(same)一行還是在下(next)一行?
control_space_after: 控制結構關鍵字後面是否有空格?
always_use_control_braces: 控制結構總是使用花括號?
else_elseif_line: 使用else和elseif,是否放在同(same)一行還是在下(next)一行?
case_break_indent_from_switch: case和break分別從swith語句縮排幾次?
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. 調查結果
indent_type:
tab: 7
2: 1
4: 14 75: 4
80: 6
85: 1
100: 1
limit_hard:
?: 2
no : 11
85: 4
100: 3
120: 2
class_names:
: : 1
studly: 19
class_brace_line:
next: 16
same: 6
constant_names:
upper: 22
upper: 3
method_names:
camel: 21
lower_under: 1
method_brace_line:
next: 15
race
control_space_after:
no: 2
yes: 20
always_use_control_braces:
no: 3 same: 16
case_break_indent_from_switch :
0/1: 4
1/1: 4
1/2: 14
function_space_after:<.> 19
yes: 3
line_endings:
?: 5
LF: 17
static_or_visibility_first:
visibility: 6
control_space_parens:
?: 1
no: 19
yes: 2
yes: 8
class_method_control_brace:
next/next/next: 4
next/next/same: 11
next/same/same: 1
http://www.bkjia.com/PHPjc/313547.html
www.bkjia.com
true
http: //www.bkjia.com/PHPjc/313547.html
TechArticle
文件倉儲位址:https://github.com/hfcorriez/fig-standards PSR規範中文版PSR-0自動載入PSR-1基本程式碼規格PSR-2程式碼樣式PSR-3日誌介面為何規範摘錄翻...