コード例 #1
0
 public function __toString()
 {
     return parent::__toString() . "<br>Tipo de escamas: " . $this->getTipoEscamas();
 }
コード例 #2
0
ファイル: Mamifero.php プロジェクト: AnaHolgado/DWES
 function __toString()
 {
     return parent::__toString() . "Tipo: Mamifero<br>" . "Numero Tetillas: " . $this->tetillas . "<br>Alimentación: " . $this->alimentacion . "<br>";
 }
コード例 #3
0
ファイル: Mamifero.php プロジェクト: jamayo/GIT
 public function __toString()
 {
     return parent::__toString() . "<br>Velocidades: {$this->velocidades}" . "<br>Tipo: {$this->tipo}";
 }
コード例 #4
0
ファイル: Ave.php プロジェクト: AnaHolgado/DWES
 function __toString()
 {
     return parent::__toString() . "Tipo: Ave" . "<br>Numero Huevos: " . $this->huevos . "<br>Ecosistema: " . $this->ecosistema . "<br>";
 }
コード例 #5
0
 public function __toString()
 {
     return parent::__toString() . "<br>Plumaje: " . $this->getPlumaje();
 }
コード例 #6
0
 public function __toString()
 {
     return parent::__toString() . "<br>Raza: {$this->raza}";
 }
コード例 #7
0
 public function __toString()
 {
     return parent::__toString() . "<br>Número de Patas: " . $this->getNumPatas();
 }
コード例 #8
0
 public function __toString()
 {
     return parent::__toString() . "<br>Longitud pico: " . $this->getLongPico();
 }