CodingStandards » History » Version 3
« Previous -
Version 3/64
(diff) -
Next » -
Current version
jmd, 08/19/2006 12:26 AM
Indentation
One tabulation
{{{
// base level
// level 1
// level 2
// level 1
// base level
?>
}}}
require_once ?
include_once ?
Short tag not allowed. Use complet tags.
{{{
// code
?>
}}}
Function names should be written in camelBack, for example:
{{{
function userName()
{
}
?>
}}
Lower case
ConstantsCapital letter :
{{{
COMPUTER_TYPE
}}}