r = $radius; } function getRadius() { // 傳回半徑 return $this->r; } function area() { // 計算圓面積的方法 return $this->r * $this->r * self::PI; } } ?>