09-25-2009, 11:24 AM
|
#4 (permalink)
|
|
That guy
Join Date: Sep 2009
Location: San Antonio, TX
Posts: 24
Thanks: 0
|
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;
}
}
|
|
|
|