Posts in tag
php
Programming standards
Variable names The first letter of a variable must start with lowercase Native variables or arrays must be separated by an underscore (_) each word change: $my_var Variables that are Objects must change to uppercase each word end, example: $myVar Global variables must all be capitalized, example: $MY_VAR Assignments Must ...