Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagephp
titleTag Usage
<?php

?>

 

Indentation

Tabs should always be used for indentation. Spaces should never be used for indentation. We live in a world where IDEs can be configured to display tabs at variable lengths, so configure your tab width to what you feel comfortable with.

...

All PHP files should be encoded using UTF-8, with no byte-order-mark (BOM).

 

Programming Styles

Strings

Literals

Concatenation

Arrays

Numerically Index Arrays

Associative Arrays

Multidimensional Arrays

Conditionals

Loops

Methods

Comments

Doc Comments

Inline Comments