*************************
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);
*************************
value of PI : 3.14159