Coding Style
Basic Introduction to Osclass coding style
Coding Style
PHP Code Demarcation
<?php
?>Variables
$iThisIsAnInteger = 42;
$sSomeText = 'This is some text';
$aVariable = array(1, 2, 3, 4 , 5);
...i_integer_variable
s_some_text
dt_registration_date
pk_i_id // this is a primary key
fk_i_category_id // this is a foreign key
...Classes
Class Declaration
Control Statements
If/Else/Elseif
Switch
Documentation Format
More information
Last updated
Was this helpful?