最赞回答 / 凯jl
class Human{ private $height; public function setHeight($h){ $this->height=$h; } public function printHeight(){ echo "Human height:".$this->height; }}class Player extends Human { protected $age; function __construc...
2014-11-14