<?php
class Result{
private $shape=null;
function __construct()
{
$this->shape=new $_GET['action']();
}
function __toString(){
$result=$this->shape->shapeName.'的周长:'.round($this->shape->perimoter(),2).'<br>';
$result.=$this->shape->shapeName.'的面积:'.round($this->shape->area(),2).'<br>';
return $result;
}
}
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!