运用PHP面向对象的知识设计一个图形计算器,同时也运用到了抽象类知识,这个计算器可以计算三角形的周长和面积以及矩形的周长和面积。本图形计算器有4个页面:1.PHP图形计算器主页index.php; 2.形状的抽象类shape.class.php; 3三角形计算类triangle.class.php; 4.矩形计算类rect.class.php。
PHP图形计算器代码点击下载: php图形计算器.zip
代码分别如下:
PHP图形计算器主页:
<html> <head> <title>简单的图形计算器</title> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> </head> <body> <center> <h1>简单的图形计算器</h1> <a href="index.php?action=rect">矩形</a> || <a href="index.php?action=triangle">三角形</a> </center> <hr><br> <?php error_reporting(E_ALL & ~E_NOTICE); //设置自动加载这个程序需要的类文件 function __autoload($classname){ include strtolower($classname).".class.php"; } //判断用户是否有选择单击一个形状链接 if(!empty($_GET['action'])) { //第一步:创建形状的对象 $classname = ucfirst($_GET['action']); $shape=new $classname($_POST); //第二步:调用形状的对象中的界面view() $shape -> view(); //第三步:用户是否提交了对应图形界面的表单 if(isset($_POST['dosubmit'])) { //第四步:查看用户输出的数据是否正确, 失败则提示 if($shape->yan($_POST)) { //计算图形的周长和面积 echo $shape->name."的周长为:".$shape->zhou()."<br>"; echo $shape->name."的面积为:".$shape->area()."<br>"; } } //如果用户没有单击链接, 则是默认访问这个主程序 }else { echo "请选择一个要计算的图形!<br>"; } ?> </body> </html>
形状的抽象类: