Versions Compared

Key

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

...

Every line should terminate with a Unix-style line-feed (LF) character only. That is '\n', also known as hex value 0x0A. Do not use CRLF (Window Windows systems) or CR (Mac systems).

...

Multidimensional Arrays

Constants

Constants should always be capitalized.

Warning
titleIncorrect
Code Block
languagephp
define("myConstant", "some value");
Tip
titleCorrect
Code Block
languagephp
define("MY_CONSTANT", "some value");

 

Conditionals

Loops

Classes

Methods

...