欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP实现的简单三角形、矩形周长面积计算器分享_php实例

程序员文章站 2022-03-18 15:03:35
...
运用PHP面向对象的知识设计一个图形计算器,同时也运用到了抽象类知识,这个计算器可以计算三角形的周长和面积以及矩形的周长和面积。本图形计算器有4个页面:1.PHP图形计算器主页index.php; 2.形状的抽象类shape.class.php; 3三角形计算类triangle.class.php; 4.矩形计算类rect.class.php。

PHP图形计算器代码点击下载: php图形计算器.zip

代码分别如下:

PHP图形计算器主页:


    
        简单的图形计算器

简单的图形计算器

矩形 || 三角形


view(); //第三步:用户是否提交了对应图形界面的表单 if(isset($_POST['dosubmit'])) { //第四步:查看用户输出的数据是否正确, 失败则提示 if($shape->yan($_POST)) { //计算图形的周长和面积 echo $shape->name."的周长为:".$shape->zhou()."
"; echo $shape->name."的面积为:".$shape->area()."
"; } } //如果用户没有单击链接, 则是默认访问这个主程序 }else { echo "请选择一个要计算的图形!
"; } ?>

形状的抽象类:

abstract class  Shape{
    //形状的名称
    public $name;
 
    //形状的计算面积方法
    abstract function area();
 
    //形状的计算周长的方法
    abstract function zhou();
 
    //形状的图形表单界面
    abstract function view();
    //形状的验证方法
    abstract function yan($arr);
 
}

三角形计算类文件:

class Triangle extends Shape {
    private $bian1;
    private $bian2;
    private $bian3;
 
    function __construct($arr = array()) {
        if(!empty($arr)) {
            $this->bian1 = $arr['bian1'];
            $this->bian2 = $arr['bian2'];
            $this->bian3 = $arr['bian3'];
 
        }
 
        $this->name = "三角形";
    }
 
    function area() {
        $p =    ($this->bian1 + $this->bian2 + $this->bian3)/2;
 
        return sqrt($p*($p-$this->bian1)*($p-$this->bian2)*($p-$this->bian3));
    }
 
    function zhou() {
        return $this->bian1 + $this->bian2 + $this->bian3;
    }
 
    function view() {
        $form = '
'; $form .= $this->name.'第一个边:
'; $form .= $this->name.'第二个边:
'; $form .= $this->name.'第三个边:
'; $form .= '
'; $form .='
'; echo $form; } function yan($arr) { $bj = true; if($arr['bian1'] "; $bj = false; } if($arr['bian2'] "; $bj = false; } if($arr['bian3'] "; $bj = false; } if(($arr['bian1']+$arr['bian2']

矩形计算类文件:

class Rect extends Shape {
    private $width;
    private $height;
 
    function __construct($arr=array()) {
 
        if(!empty($arr)) {
            $this->width = $arr['width'];
            $this->height = $arr['height'];
        }
        $this->name = "矩形";
    }
 
    function area() {
        return $this->width * $this->height;
    }
 
    function zhou() {
        return 2*($this->width + $this->height);
    }
 
    function view() {
        $form = '
'; $form .= $this->name.'的宽:
'; $form .= $this->name.'的高:
'; $form .= '
'; $form .='
'; echo $form; } function yan($arr) { $bg = true; if($arr['width'] name."的宽不能小于0!
"; $bg = false; } if($arr['height'] name."的高度不能小于0!
"; $bg = false; } return $bg; } }