PHP教程
PHP Mysql
PHP面向对象
PHP常用

PHP 继承任务

PHP继承任务

创建使用继承查找三角形区域的程序。

解决方案:

<?php
    classgetdata
    {
        public $h;
        public $b;
        public function method1()
        {
            $this->h= $_REQUEST['height'];
            $this->b= $_REQUEST['base'];
        }
    }
    classfindarea extends getdata
    {
        public $area;
        public function method2()
        {
            $this->area= ($this->h* $this->b)/2;
            echo "Area of Triangle is : ".$this->area;
        }
    }
    if(isset($_REQUEST['submit']))
    {
        $obj = new findarea();
        $obj->method1();
        $obj->method2();
    }
    
?>
<html>
<head>
</head>
<body>
    <form method= "post">
        <table align ="left" border="1">
        <tr>
            <td> Enter Height </td>
            <td><input type = "text" name="height"/></td>
        </tr>
        <tr>
            <td> Enter Base </td>
            <td><input type = "text" name="base"/></td>
        </tr>
        <tr>
            <td align ="center" colspan="2">
            <input type= "submit"name="submit"value="click"/>
        </td>
        </tr>
        </table>
        </form>
</body>
</html>
输出:
继承任务 继承任务 继承任务
昵称: 邮箱:
Copyright © 2022 立地货 All Rights Reserved.
备案号:京ICP备14037608号-4