当前位置: 首页>>代码示例>>PHP>>正文


PHP Rectangle::getPerimeter方法代码示例

本文整理汇总了PHP中Rectangle::getPerimeter方法的典型用法代码示例。如果您正苦于以下问题:PHP Rectangle::getPerimeter方法的具体用法?PHP Rectangle::getPerimeter怎么用?PHP Rectangle::getPerimeter使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Rectangle的用法示例。


在下文中一共展示了Rectangle::getPerimeter方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getPerimeter

    {
        return $width * $height;
    }
    public function getPerimeter($width, $height)
    {
        return $width + $height;
    }
    public function isSquare()
    {
        return $this->width == $this->height;
    }
}
$width = 160;
$height = 75;
echo "<h2>With a width of {$width} and a height of {$height}...</h2>";
$r = new Rectangle($width, $height);
echo '<p>The area of the rectangle is ' . $r->getArea($width, $height) . '</p>';
echo '<p>The perimeter of the rectangle is ' . $r->getPerimeter($width, $height) . '</p>';
echo '<p>This rectangle is ';
if ($r->isSquare()) {
    echo 'also';
} else {
    echo 'not';
}
echo ' a square.</p>';
?>

</p>

</body>
</html>
开发者ID:Code2Hire,项目名称:challenges-student-work,代码行数:31,代码来源:1_easy.php

示例2: getPerimeter

    }
    public function getPerimeter()
    {
        return $this->width * 2 + $this->height * 2;
    }
    public function isSquare()
    {
        if ($this->width == $this->height) {
            return true;
        }
    }
}
$width = 160;
$height = 75;
echo "<h2>With a width of {$width} and a height of {$height}...</h2>";
$r = new Rectangle($width, $height);
echo '<p>The area of the rectangle is ' . $r->getArea() . '</p>';
echo '<p>The perimeter of the rectangle is ' . $r->getPerimeter() . '</p>';
echo '<p>This rectangle is ';
if ($r->isSquare()) {
    echo 'also';
} else {
    echo 'not';
}
echo ' a square.</p>';
?>

</p>

</body>
</html>
开发者ID:HeatherClark,项目名称:challenges,代码行数:31,代码来源:1_easy.php

示例3: Rectangle

<?php

// PHP exercise about extending classes from a parent class. Rectangle is the parent class.
// Square is the child class extending off of Rectangle.
// This file runs in the command line.
// Because Square.php requires Rectangle.php, this file has access to both.
require_once 'Square.php';
$rectangle = new Rectangle(5, 10);
echo 'Rectangle area: ' . $rectangle->getArea() . PHP_EOL;
echo 'Rectangle perimeter: ' . $rectangle->getPerimeter() . PHP_EOL;
$square = new Square(9);
echo 'Square area: ' . $square->getArea() . PHP_EOL;
echo 'Square perimeter: ' . $square->getPerimeter() . PHP_EOL;
开发者ID:anthony87burns,项目名称:codeup-web-exercises,代码行数:13,代码来源:shapes_test.php

示例4: getArea

	宽度:<input type="text" name="width" > <br/>
	高度:<input type="text" name="height" > <br/>
	<input type="submit" name="btn" value="计算">
	</form>
</body>
</html>

<?php 
include 'file_7_extraTraining.php';
class Rectangle extends Shape
{
    private $width, $height;
    function __construct($width, $height)
    {
        $this->width = $width;
        $this->height = $height;
    }
    function getArea()
    {
        return $this->width * $this->height;
    }
    function getPerimeter()
    {
        return 2 * $this->width + 2 * $this->height;
    }
}
if (isset($_POST["btn"])) {
    $rect1 = new Rectangle($_POST["width"], $_POST["height"]);
    echo "矩形的周长:" . $rect1->getPerimeter() . "<br/>";
    echo "矩形的面积:" . $rect1->getArea() . "<br/>";
}
开发者ID:XINCGer,项目名称:phpWebTraining,代码行数:31,代码来源:Rect.php


注:本文中的Rectangle::getPerimeter方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。