Keywords

  • Should always appear in lowercase

Incorrect:

    $bar = TRUE;

Correct:

    $bar = true;

Incorrect:

    Global $variable;

Correct:

    global $variable;