Technical stuff Requirements are like water. They're easier to build on when they're frozen.

Posts Tagged ‘code conventions’

The PHP code conventions I use

05.22.2009 · Posted in Resources

<?php // Did you notice the full-style opening PHP tags? /************************************************************** * Variable Naming conventions ************************************************************* * - Use data type as prefix inside the name * Eg: $sName instead of just $name * - Try to use as descriptive names as possible * Eg: $arProductList instead of just $arList **************************************************************/ /************************************************************** * Basic Datatypes ...