已采纳回答 / 保龙
你new错了,要new Player类<?phpclass Human{ public $name; public $height; public $weight; public function eat($food){ echo $this->name."'s eating ".$food."\n"; }}class Player extends Human{ function __construct($name,$height,$weight){ $this->name=$nam...
2016-05-12