class.rectangle.php
来自「Professional PHP5 code for this book」· PHP 代码 · 共 17 行
PHP
17 行
<?php class Rectangle { public $height; public $width; public function __construct($width, $height) { $this->width = $width; $this->height = $height; } public function getArea() { return $this->height * $this->width; } }?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?