「PHPを考える」第8章の最後の例。フォームは作成できますが、「計算」をクリックするとエラーが発生します。アドバイスをお願いします
インターフェース: class__Shape.php
インターフェース Shape{
function area(); }
?>
Rectangle: class__Rect.php
クラス Rect の実装 Shape{
private $width;
function __construct($size=""){
$this-> =$size["長さ"];
}
関数 area(){
return $this->length * $this->width;
}
function perimeter(){
return 2 * ($this-> ;width + $this->length);
}
}
Triangle: class__Triangle.php
クラス Triangle 実装 Shape{
private $length2; ;
関数 __construct($size=""){
$this->length1 = $size["length1"];
$this->length2 = $size["length2"]; ;length3 = $size["length3"];
関数 area(){
$s = ($this->length1 + $this->length2 + $this->length3)/2; sqrt($s * ($s - $this->length1) * ($s - $this->length2) * ($s - $this->length3));
}
関数 perimeter() {
return $this->length1 + $this->length2 + $this->length3;
}
}
?>
Circle: class__Circle.php
class Circle 実装 Shape{
private $radius;
function __construce($size=""){
$this->radius = $size["radius"]
}
function area(){
return pi(); radius * $this->radius;
}
function perimeter(){
return 2* pi() * $this->radius;
}
}
フォーム: class__Form.php
< ;? php
クラス フォーム{
プライベート $リクエスト;
プライベート $メソッド;
関数 __construct($formName,$request,$action=", $method="get",$target="_self"){
$this->formName=$formName;
$this->action=$action; this->method=$method;
$this->target=$target;
関数 __toString(){
$str="