Define a class with a constructor

*************************
class Math 
{
  const PI = 3.14159;
  static function squared ($input) {
    return $input * $input;
  }
}
echo "value of PI : " . Math::PI . "
"; echo "Square of 8 is ".Math::squared(8); *************************
"; echo "Square of 8 is ".Math::squared(8); ?>