View Single Post
Old 09-25-2009, 11:24 AM   #4 (permalink)
cachepl0x
That guy
 
cachepl0x's Avatar
 
Join Date: Sep 2009
Location: San Antonio, TX
Posts: 24
Thanks: 0
cachepl0x is on a distinguished road
Default

PHP Code:
# Comment with a pound

class Conf
{
    const 
name "name";
    const 
age  "20";
}

class 
Main extends Conf                    # Always capitalize class names.
{
    public 
$var      name;             # Typical
    
public $othervar age;              # No camelCase. I can't stand it.
    
    
public function FunctionName()         # Also Caps.
    
{
        echo 
$var "is " $othervar;
    }
    

cachepl0x is offline  
Reply With Quote