class.cat.php

来自「Professional PHP5 code for this book」· PHP 代码 · 共 27 行

PHP
27
字号
<?php  class Cat {    public $weight;        //in kg    public $furColor;    public $whiskerLength;    public $maxSpeed;      //in km/hr       public function eat() {      //code for eating...    }       public function sleep() {      //code for sleeping...    }       public function hunt(Prey $objPrey) {      //code for hunting objects of type Prey      //which we will not define...    }       public function purr() {      print "purrrrrrr..." . "\n";    }  }?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?