📄 class.cat.php
字号:
<?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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -