很简单的有关问题,就是不知道为什么

WBOY
Release: 2016-06-13 10:09:24
Original
929 people have browsed it

很简单的问题,就是不知道为什么?
index.php

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->            <title>计算</title>                <p></p><center>周长面积计算</center>        <p></p><center>            <a href="index.php?id=rect">正方形</a> ||             <a href="index.php?id=triangle">三角形</a> ||             <a href="index.php?id=circle">圆形</a>                    </center>        <hr>        <?php function __autoload($className){                include $className.'.class.php';            }            echo new form;            echo $_REQUEST['id'];        ?>    
Copy after login

form.class.php
PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><?php class form{        private $shape;        function __construct(){            $this->shape=isset($_REQUEST["id"]) ? $_REQUEST["id"]:"rect";        }        function __toString(){            $form='
Copy after login
'; switch($this->shape){ case "rect": $form.=$this->getRect(); break; case "Triangle": $form.=$this->getTriangle(); break; case "circle": $form.=$this->getCircle(); break; default: echo '没有这个图形'; } $form.=''; $form.='
'; return $form; } private function getRect(){ $input='

请输入矩形的宽高

'; $input.='

宽度:

'; $input.='

高度:

'; return $input; } private function getTriangle(){ $input='

请输入三角形的三边

'; $input.='

第一边:

'; $input.='

第二边:

'; $input.='

第三边:

'; return $input; } private function getCircle(){ $input='

请输入圆的半径

'; $input.='

半径:

'; return $input; } }?>

--------------------
点三角形的时候,为什么会输出‘没有这个图形’,那里写错了?

------解决方案--------------------
id=triangle

case "Triangle":

=====================
understand??
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!