PHP Coding Convention
Goal
Sebuah kesepakatan untuk menstandardisasikan cara dan gaya coding PHP.
Intro
We are not reinventing the wheels. Rolling Glory mengadopsi PSR (PHP Standard Recommendation), sebuah standard dalam coding PHP yang dibuat oleh sebuah konsorsium bernama PHP-FIG. Framework PHP yang banyak digunakan di Rolling Glory adalah Yii Framework dan Laravel, dan keduanya merupakan anggota dari PHP-FIG.
Dalam document ini, akan dituliskan ulang beberapa guideline yang akan sering digunakan terutama dari PSR-1 Basic Coding Standard dan PSR-12 Extended Coding Style. Untuk lengkapnya silakan baca di link ke PSR yang lengkap.
References
PSR-1 Basic Coding Standard
Files MUST use only <?php
and <?=
tags.
Files MUST use only UTF-8 without BOM for PHP code.
Class names MUST be declared in StudlyCaps
Class constants MUST be declared in all upper case with underscore separators.
Method names MUST be declared in camelCase
.
PSR-12 Extended Coding Style
All PHP files MUST use the Unix LF (linefeed) line ending only.
All PHP files MUST end with a non-blank line, terminated with a single LF.
The closing ?>
tag MUST be omitted from files containing only PHP.
There MUST NOT be a hard limit on line length.
The soft limit on line length MUST be 120 characters.
Lines SHOULD NOT be longer than 80 characters; lines longer than that SHOULD be split into multiple subsequent lines of no more than 80 characters each.
There MUST NOT be trailing whitespace at the end of lines.
Blank lines MAY be added to improve readability and to indicate related blocks of code except where explicitly forbidden.
There MUST NOT be more than one statement per line.
Code MUST use an indent of 4 spaces for each indent level, and MUST NOT use tabs for indenting.
Short form of type keywords MUST be used i.e. bool
instead of boolean
, int
instead of integer
etc.
Any closing brace MUST NOT be followed by any comment or statement on the same line.
When instantiating a new class, parentheses MUST always be present even when there are no arguments passed to the constructor.
The extends
and implements
keywords MUST be declared on the same line as the class name.
The opening brace for the class MUST go on its own line; the closing brace for the class MUST go on the next line after the body.
Opening braces MUST be on their own line and MUST NOT be preceded or followed by a blank line.
Closing braces MUST be on their own line and MUST NOT be preceded by a blank line.
Visibility MUST be declared on all properties.
Visibility MUST be declared on all constants if your project PHP minimum version supports constant visibilities (PHP 7.1 or later).
The var
keyword MUST NOT be used to declare a property.
There MUST NOT be more than one property declared per statement.
Property names MUST NOT be prefixed with a single underscore to indicate protected or private visibility. That is, an underscore prefix explicitly has no meaning.
A method declaration looks like the following. Note the placement of parentheses, commas, spaces, and braces:
When present, the abstract
and final
declarations MUST precede the visibility declaration.
When present, the static
declaration MUST come after the visibility declaration.
When making a method or function call, there MUST NOT be a space between the method or function name and the opening parenthesis, there MUST NOT be a space after the opening parenthesis, and there MUST NOT be a space before the closing parenthesis. In the argument list, there MUST NOT be a space before each comma, and there MUST be one space after each comma.
The general style rules for control structures are as follows:
There MUST be one space after the control structure keyword
There MUST NOT be a space after the opening parenthesis
There MUST NOT be a space before the closing parenthesis
There MUST be one space between the closing parenthesis and the opening brace
The structure body MUST be indented once
The body MUST be on the next line after the opening brace
The closing brace MUST be on the next line after the body
The body of each structure MUST be enclosed by braces. This standardizes how the structures look and reduces the likelihood of introducing errors as new lines get added to the body.
Last updated
Was this helpful?