Version: 1 2012-05-??
This standard comprises the code style requirements for interoperability (Section 1) and the best practices guidelines (Section 2) for PHP projects.
studly-caps refers to a naming convention where all 'words' in the name are conactenated and have only the first letter in uppercase followed by lower case letters (for example "StudlyCaps").
camel-caps refers to a naming convention is like studly-caps except that the first letter in the word is lower case (for example "camelCaps").
Vendor is a generic term that refers to the individual or organisation who produces the code.
Class is generally considered synonymous with interface and traits unless specified otherwise (or is not applicable). Where requirements or guidelines are interfaces and traits are not specifically mentioned, those for classes will be assumed to apply.
This section of the standard comprises what should be considered the mandatory styling elements that are required to ensure a high level of interoperability between shared PHP code.
Long <?php ?>
and short-echo <?= ?>
tags are permitted for defining PHP codeblocks.
PHP files must be stored using UTF-8 (no BOM) character encoding.
For code intended to be used with PHP 5.3 or later, all namespaces and classes are to be named with PSR-0 in mind. In doing so, each class is in a file by itself, and is in a namespace of at least one level (a top-level vendor name).
Class names are to be declared in studly-caps.
For code written to support earlier versions of PHP, the pseudo-namespacing convention of Vendor_
prefixes on class names should be considered.
For example:
<?php
// PHP 5.3 or later.
// Class name in StudlyCaps and vendor, and namespaced.
namespace Vendor\Model;
class Foo
{
}
<?php
// Earlier than PHP 5.2.
// Class name in studly-caps and vendor, with vendor prefix.
class Vendor_ModelFoo
{
}
Class constants must be declared class in upper case with underscore separators if required. For example:
<?php
class PhpFigPsr1
{
const VERSION;
const DATE_APPROVED;
}
Class method names are to be declared in camel-caps. For example:
<?php
class PhpFigPsr1
{
public function isCompliant()
{
}
}
This section comprises a collection of the best practices used within the PHP community in order to provide a consistent stylistic approach to coding PHP libraries and projects. The intent of this guide is to reduce cognitive friction when scanning code from different vendors.
This section is to be considered non-mandatory, but does form the common practice observed in most of the PHP community. It is understood that variations will arise and in such cases, vendors should note clearly in their own style guides where they deviate or vary from this section.
The Unix LF (linefeed) line ending should be used in all PHP files.
Where a files only contains PHP code, omit the closing ?>
tag.
End each file with a single blank line.
There is no hard limit on line length. A soft limit of 120 characters is recommended. Automated style checkers should output a warning (or an error at the discretion of the vendor) when lines exceed the nominated soft limit.
Trailing spaces should be stripped from the end of lines (most programming editors have an option to do this automatically on save).
Blank lines should be added to improve readability and to indicate related blocks of code.
Use at most one statement per line.
Use four (4) real spaces for indenting code.
Place one blank line after the namespace
declaration.
All use
declarations go after the namespace
declaration. There is one use
keyword per declaration.
Place one blank line after the use
block.
For example:
namespace Vendor\Package;
use FooClass;
use BarClass as Bar;
use OtherVendor\OtherPackage\BazClass;
// ... additional PHP code ...
Declare extends
and implements
keywords on the same line as the class
name.
The opening and closing braces for the class go on their own line.
<?php
namespace Vendor\Package;
use FooClass;
use BarClass as Bar;
use OtherVendor\OtherPackage\BazClass;
class ClassName extends ParentClass implements InterfaceName
{
// constants, properties, methods
}
Lists of implements
may be split across multiple lines, where each
subsequent line is indented once. List only one interface per line.
<?php
namespace Vendor\Package;
use FooClass;
use BarClass as Bar;
use OtherVendor\OtherPackage\BazClass;
class ClassName extends ParentClass implements
InterfaceName,
AnotherInterfaceName,
YetAnotherInterface,
InterfaceInterface
{
// constants, properties, methods
}
Declare visibility on all properties. Do not use var
to declare a property.
Declare only one property per statement.
A property declaration looks like the following.
<?php
namespace Vendor\Package;
class ClassName
{
public $foo = null;
}
Declare visibility on all methods.
Declare methods with no space after the method name. The opening and closing braces go on their own line. There is no space after the opening parenthesis, and there is no space before the closing parenthesis.
A method declaration looks like the following. Note the placement of parentheses, commas, spaces, and braces:
<?php
namespace Vendor\Package;
class ClassName
{
public function fooBarBaz($arg1, &$arg2, $arg3 = [])
{
// method body
}
}
Method arguments with default values always go at the end of the argument list.
<?php
namespace Vendor\Package;
class ClassName
{
public function foo($arg1, &$arg2, $arg3 = [])
{
// method body
}
}
Argument lists may be split across subsequent indented lines; list only one argument per line. When the argument list is split across multiple lines, the closing parenthesis and opening brace are placed together on their own line.
<?php
namespace Vendor\Package;
class ClassName
{
public function aVeryLongMethodName(
ClassTypeHint $arg1,
&$arg2,
array $arg3 = []
) {
// method body
}
}
When present, the abstract
and final
declarations precede the visibility declaration.
When present, the static
declaration comes after the visibility declaration.
<?php
namespace Vendor\Package;
class ClassName
{
protected static $foo;
abstract protected function zim();
final public static function bar()
{
// method body
}
}
The general style rules for control structures are as follows:
- one space after the control structure keyword
- no space after the opening parenthesis
- no space before the closing parenthesis
- one space between the closing parenthesis and the opening brace
- structure body indented once
- closing brace on the line after the body, outdented once from the body
Always use braces to enclose the body of each structure. This standardizes how the structures look, and reduces the likelihood of introducing errors as new lines get added to the body.
An if
structure looks like the following. Note the placement of parentheses,
spaces, and braces; and that else
and elseif
are on the same line as the
closing brace from the earlier body.
<?php
if ($expr1) {
// if body
} elseif ($expr2) {
// elseif body
} else {
// else body;
}
N.b.: There appears to be no consistency between projects, and often not even within the same project, on the use of
else if
vselseif
. This guide encourages the use ofelseif
so that all control structures look like single words.
A switch
structure looks like the following. Note the placement of
parentheses, spaces, and braces; the indent levels for case
and break
; and
the presence of a // no break
comment when a break is intentionally omitted.
<?php
switch ($expr) {
case 1:
echo 'First case';
break;
case 2:
echo 'Second case';
// no break
default:
echo 'Default case';
break;
}
A while
statement looks like the following. Note the placement of
parentheses, spaces, and braces.
<?php
while ($expr) {
// structure body
}
Similarly, a do while
statement looks like the following. Note the placement
of parentheses, spaces, and braces.
<?php
do {
// structure body;
} while ($expr);
A for
statement looks like the following. Note the placement of parentheses,
spaces, and braces.
<?php
for ($i = 0; $i < 10; $i++) {
// for body
}
A foreach
statement looks like the following. Note the placement of
parentheses, spaces, and braces.
<?php
foreach ($iterable as $key => $value) {
// foreach body
}
A try catch
block looks like the following. Note the placement of
parentheses, spaces, and braces.
<?php
try {
// try body
} catch (FirstExceptionType $e) {
// catch body
} catch (OtherExceptionType $e) {
// catch body
}
All PHP files should include a DocBlock header.
All classes should include a DocBlock for the class definition.
All class contants, properties and methods should include a DocBlock to explain their purpose.
All functions should include a DocBlock to explain their purpose.
namespace Vendor\Model;
class VendorModelFoo
{
}
you want to say
namespace Vendor\Model;
class Foo
{
}
?
AND
class Vendor_ModelFoo
{
}
U want to say
class Vendor_Model_Foo
{
}
?