<!DOCTYPE html>
<html>
<body>
<?php
class Car {
public $color;
public $model;
public function __construct($color, $model) {
$this->color = $color;
$this->model = $model;
}
public function message() {
return "私の車は" . $this->color . " " . $this->model . "!";
}
}
$myCar = new Car("黒", "ボルボ");
echo $myCar -> message();
echo "<br>";
$myCar = new Car("赤", "トヨタ");
echo $myCar -> message();
?>
</body>
</html>