06-11-2009, 09:40 AM
|
#10 (permalink)
|
|
The Contributor
Join Date: Nov 2007
Location: California
Posts: 82
Thanks: 0
|
PHP Code:
$camelCase = 42;
$arr['and_indent'] = 1;
$arr['like_variables'] = 2;
$arr['as_its_easier'] = 3;
$arr['to_read'] = 4;
if($a == 1)
{
echo 'I LIKE PIE';
}
define('ONLY_DEFINES_ARE_CAPS',true);
if(defined('ONLY_DEFINES_ARE_CAPS') && ONLY_DEFINES_ARE_CAPS === true)
{
echo 'And for heavens sake, check the type and value of booleans';
}
|
|
|
|