View Single Post
Old 06-11-2009, 09:40 AM   #10 (permalink)
dschreck
The Contributor
 
dschreck's Avatar
 
Join Date: Nov 2007
Location: California
Posts: 82
Thanks: 0
dschreck is on a distinguished road
Default

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';

__________________
Where I Ramble: http://www.iwilldomybest.com/
What I do: Zynga Game Network
Senior Software Engineer at CityVille
dschreck is offline  
Reply With Quote