06-15-2009, 08:33 AM
|
#25 (permalink)
|
|
The Contributor
Join Date: Sep 2007
Posts: 32
Thanks: 0
|
PHP Code:
$camelCase = 1337;
if($a == 1)
echo "this is an one line if.";
if($a == 2)
{
echo "this is a ";
echo "multiple line if.";
}
function camelCase($param)
{
echo "lower camel case for functions, upper for class names.";
}
And always (real) tabs, 2 or 4 spaces long.
|
|
|
|