ユーザーが3つのパラメーター幅と高さ、形状をトリングルまたは長方形に入力する必要があるフォームを含むphpファイルがあります。PHP の最初の行コードで、幅と高さのパラメーターを読み取ろうとし、行コード php の最後で、形状のトリングルまたは四角形のパラメーターを読み取ろうとし、このパラメーターに従って面積を計算します。どんな癒しにもthx。
<h2>OOP Class Demo</h2>
<p>
Please enter two numbers to calculated the area of rectangle or tringle and press submit...
<p>
<form method="post" action="demo.php">
<br>width.1 <input type=text name=num_a>
<br>height.2 <input type=text name=num_b>
<br><input type="radio" name="shape" value="Rectangle" /> Rectangle
<br><input type="radio" name="shape" value="Tringle" /> Tringle
<br><input type=submit>
</form>
<?php
echo("<br>");
if(isset($_POST['submit']))
{echo "THERE is submit.!";
Class Rectangle {
//Declare the attributes:
public $width = $_POST['width'];
public $height = $_POST['height'];
protected static $formula = 0;
//Method to set the dimensions.
Function create_formula() {
self :: $formula = $this->width * $this->height;
}
//Method to set the dimensions.
Function set_size($w = 0, $h = 0) {
$this->width = $w;
$this->height = $h;
$this->create_formula();
}
//Method to calculate and return the area.
function get_area() {
return (self::$formula);
}
}
Class Triangle extends Rectangle{
Function create_formula() {
self :: $formula = ($this->width * $this->height)/2;
}
}
if (!$_POST['shape']){echo('your choice is: '.$_POST['shape']);}
// create object of rectangle and calculate it is area
$rect = new Rectangle ();
echo ($rect->get_area()."<br />");
// create object of tringle and calculate it is area by extends
$tri = new Triangle ();
echo $tri->get_area();
}
?>