Rumah > Artikel > pembangunan bahagian belakang > 很简单的有关问题,就是不知道为什么
很简单的问题,就是不知道为什么?
index.php
<!-- 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']; ?>
<!-- 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='
请输入矩形的宽高
'; $input.='宽度:
'; $input.='高度:
'; return $input; } private function getTriangle(){ $input='请输入三角形的三边
'; $input.='第一边:
'; $input.='第二边:
'; $input.='第三边:
'; return $input; } private function getCircle(){ $input='请输入圆的半径
'; $input.='半径:
'; return $input; } } ?>